/*html {
  font-size: 14px;
}

.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%;
}*/

#InvoiceTable thead th {
    color: white;
    font-weight: 600;
    padding-top: 2px;
    padding-bottom: 2px;
}

#InvoiceTable thead {
    background-color: var(--bs-primary);
    font-weight: 600;
}

.table-responsive tbody { 
    max-height: 400px; 
    overflow-y: auto; 
    overflow-x: hidden; 
}

.table-responsive thead th { 
    position: sticky; 
    top: 0; 
    background-color: inherit; 
    z-index: 1; 
}

#InvoiceTable tbody td {
    padding-top: 1px;
    padding-bottom: 1px;
    font-size: 14px; 
}

#InvoiceTable tbody td:first-child { 
    width: 40px; 
}

.employee-separator {
 
    border-bottom: 1px solid #ccc; 
    margin-bottom: 5px; 
}


.employee-separator td {
    border: none;
}

#InvoiceTable tbody td:nth-child(2) {
    width: 40%;
}

.hero-background {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 100px);
    justify-content: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: url(/images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0));
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    margin-top: 100px;
    flex-grow: 1;
}

#header {
    height: 100px;
    display: flex;
}

.navbar-brand-logo {
    max-height: 70px;
    max-width: none;
    min-width: auto;
    width: auto;
}

.form-select .k-icon-button {
    display: none;
}

.info-text {
    font-size: .75rem;
}

.modal-header {
    padding: var(--bs-modal-padding);
}

.modal {
    --bs-modal-header-border-width: 1px;
}

.empty:empty {
    margin-bottom: 0!important;
}

.video-container {
    max-width: 100%; /* Set a pixel value instead if no parent container*/
    margin: 0 auto; /* Center the container */
    cursor: pointer;
}

    .video-container video {
        width: 100%; /* Fill the available width */
        height: auto; /* Adjust height automatically */
        border-bottom: 1px solid white;
        margin-bottom: -1px;
        border-radius: 20px;
    }

.rounded-image {
    border-radius: 20px;
    max-width: 100%;
}

video:focus {
    outline: none;
}

ol.bold-numbers > li::marker {
    font-weight: bold;
    color: var(--bs-dark);
}

@media (min-width: 768px) {
   /* html {
        font-size: 16px;
    }*/
}
