@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
    .company-logo {
        display: block !important;
    }
}
.select2-container .select2-selection--single {
    height: 38px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 39px !important;;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px !important;;
}
/* Spinner style */
#spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.spinner {
    border: 8px solid #287f71;
    border-top: 8px solid #287f711a;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/**************************/
