.header-bg {
    background-color: #c0e6b3;
}

.header-text-color {
    color: #6C5F5B;
}

.btn-primary-bg {
    background-color: #679167 !important;
}

.btn-primary-bg:hover {
    background-color: #7ea87e !important;
}

.tbl-bg {
    background-color: #EBF3E8;
}

.close-btn-bg {
    background-color: #D2E3C8 !important;
}

.close-btn-bg:hover {
    background-color: #c0d4b4 !important;
}

.close-btn-text-color {
    color: #6C5F5B !important;
}

.modal-rounded {
    border-radius: 20px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

.select2-selection__rendered, .select2-results__option {
    font-weight: 400;
    color: black;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    margin-right: 5px;
}

.select2-container .select2-selection--single .select2-selection__arrow::after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 18px;
}

.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background-color: #fafbfd;
    border: 1px solid #e6e2e1;
    height: 40px;
    line-height: 40px;
    font-weight: 500;
}

input[type="checkbox"], input[type="radio"] {
    border: 1px solid #717872;
}

input[type="checkbox"]:checked, input[type="radio"]:checked{
    background-color: #539461;
    border-color: #717872;
}

.read-only {
    background-color: rgba(232, 231, 227, 0.2);
}


