.mb-panel {
    box-shadow: 0px 2px 6px -1px rgba(0,0,0,0.40);
    -webkit-box-shadow: 0px 2px 6px -1px rgba(0,0,0,0.40);
    -moz-box-shadow: 0px 2px 6px -1px rgba(0,0,0,0.70);
    border-radius: 6px;
    border: 1px solid #bbb;
}

.sub-header {
    font-family: 'Roboto-Regular', sans-serif;
    color: #2A7A93;
    font-size: 30px;
    font-weight: 400;
    margin-left: -0.1rem;
}

/* START EXCEL/PDF EXPORT BUTTON - LOADING OVERLAY *****************************************************/
.k-grid-toolbar {
    height: 43px;
}

.k-grid-pager {
    height: 40px;
}

.export-excel, k-button-solid-base {
    border-color: #cedff9;
    color: #212529;
    background-color: #cedff9;
    font-family: 'Roboto-Regular';
    font-size: 14px;
    padding: revert;
}

.export-pdf, k-button-solid-base {
    border-color: #aac4ed;
    color: #212529;
    background-color: #aac4ed;
    font-family: 'Roboto-Regular';
    font-size: 14px;
    padding: revert;
}

.export-excel, k-button-solid-base {
    margin-top: -13px;
}

.export-pdf, k-button-solid-base {
    margin-top: -13px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* END EXCEL/PDF EXPORT BUTTON - LOADING OVERLAY *****************************************************/
