.fixed-header thead {
    position: sticky;
    inset-block-start: 0;
    cursor: pointer;
}

.daterangepicker td.active.start-date {
    background-color: var(--tb-primary);
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.daterangepicker td.available:hover {
    background-color: var(--tb-primary);
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    color: #fff;
}

.daterangepicker td.active {
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.clickable {
    cursor: pointer;
}

.modal-dialog .modal-header {
    background: var(--tb-primary);
    color: #fff;
}

.modal-dialog .modal-title {
    color: #fff;
}

.choices {
    margin-bottom: 5px;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 8px solid var(--tb-primary);
    border-top: 8px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

table.dataTable thead tr {
    background-color: #eef0f7;
} 