 /* Custom colors for Toastr notifications */
 .toast-success {
    background-color: #031104;
    /* Green for success */
    color: white;
}

.toast-error {
    background-color: #7d0f08;
    /* Red for error */
    color: white;
}

.toast-info {
    background-color: #2196F3;
    /* Blue for info */
    color: white;
}

.toast-warning {
    background-color: #FFC107;
    /* Yellow for warning */
    color: black;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading img {
    width: 100px;
    /* Adjust the size as needed */
}

.fixed-timer-container {
    position: fixed;
    top: 160px;
    right: 100px;
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 999;
}

.select2-container .select2-dropdown {
    max-height: 100px;
    overflow-y: auto;
    border-radius: 4px;

}

.select2-selection__rendered {
    line-height: 35px !important;
}

.select2-container .select2-selection--single {
    height: 43px !important;
}

.select2-selection__arrow {
    height: 36px !important;
}
