﻿
.btn {
    cursor: pointer;
    border: solid 1px transparent;
    border-radius: 4px;
    margin: 0;
}

.btn-sm {
    padding: 0.125rem 0.4rem 0.15rem 0.4rem;
}

.btn-icon {
    color: rgba(0,0,0,0.5);
    padding: 2px;
}

.btn-primary {
    background: #4A90E2;
    color: #fff;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        background-color: #357ABD; /* Slightly darker blue on hover */
    }

.btn-secondary {
    background: #888;
    border-color: #6c757d;
    color: #fff;
}

.btn-transparent {
    background-color: transparent;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.flex-column {
    flex-direction: column;
}

.flex-grow-1 {
    flex-grow: 1;
}

.form-row {
    border: none;
    text-align: left;
}
    .form-row div {
        display: inline-flex;
        padding-left: 12px;
    }

.header {
    /*    font-size: 68.75%;
*/ font-size: 11px;
}

.icon {
    width: 16px;
    height: 16px;
}

.modal-backdrop {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.15);
}

.modal {
    background-color: white;
    margin: auto;
    border-radius: 0.5rem;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--app-border);
}

.modal-header h1 {
    padding-right: 1rem;
}

.modal-header, .modal-body, .modal-footer {
    padding: 1rem;
}

.modal-footer {
    border-top: var(--app-border);
    text-align: right;
}

.modal-footer button {
    margin-left: 0.5rem;
}

.text-start {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.text-primary {
    color: blue;
}

.text-danger {
    color: red;
}

.text-nowrap {
    white-space: nowrap;
}

.table-sm td, .table-sm th {
    padding: .3rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05);
}

td.icon {
    padding: 2px;
}