html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* --- my addition -----------------------------*/

.my_compact_table {
    font-size: 0.85rem;
    width: 100%;
    border-collapse: collapse;
    outline: 2px solid #888;
}

    .my_compact_table td,
    .my_compact_table th {
        border: 1px solid #dee2e6;
        padding: 0.3rem 0.5rem;
    }

    .my_compact_table thead tr {
        background-color: #212529;
        color: white;
    }

        .my_compact_table thead tr th {
            text-align: center;
        }

    .my_compact_table tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.075);
    }

.row-gray td {
    background-color: #e9ecef !important;
    color: #6c757d !important;
}

.row-red td {
    background-color: #dc3545 !important;
    color: #fff !important;
}

.summary-row {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
}

    .summary-row .negative {
        color: #ffaaaa;
    }

.negative {
    color: red;
}

.mute {
    color: gray;
}

.thick-left {
    border-left: 2px solid #888 !important;
}

.thick-right {
    border-right: 2px solid #888 !important;
}

.thick-bottom {
    border-bottom: 2px solid #888 !important;
}


.to-right {
    text-align: right;
}

.to-center {
    text-align: center;
}
