.active>.page-link, .page-link.active {
    background-color: #63c4f2 !important;
    border-color: #63c4f2 !important;
}

/* select2 css */
.select2-container .select2-selection--single {
    height: calc(1em + 1rem + calc(1px* 2)) !important;
    color: #4A9BBD !important;
    background: #EFFAFF !important;
    border: 1px solid #EFFAFF !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #4A9BBD !important;
}
/* .select2-container {
    width: 100% !important;
} */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color:#4A9BBD !important;
}

/* css for multiple */

/* General styling for Select2 */
/* .select2-container {
    width: 100% !important;
} */

/* Styling for multi-select dropdown */
.select2-container--default .select2-selection--multiple {
    height: calc(1em + 1rem + calc(1px * 2)) !important;
    color: #4A9BBD !important;
    background: #EFFAFF !important;
    border: 1px solid #EFFAFF !important;
    border-radius: 5px !important;
}

/* Target the placeholder text inside the search box */
.select2-search__field::placeholder {
    color: #4A9BBD !important;  /* Change this to your desired color */
    opacity: 1 !important; /* Ensure visibility */
    font-family: "Manrope", "Montserrat", sans-serif !important;
}

/* Selected items text color */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #4A9BBD !important;
    /* color: white !important; */
    border-radius: 3px !important;
}

/* Remove "x" button default styling */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white !important;
    cursor: pointer;
    margin-left: 5px;
}

/* remove background hover color */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: transparent !important;
}

/* Styling for dropdown options */
.select2-dropdown {
    background: #EFFAFF !important;
    border: 1px solid #3b3b5e !important;
    color: #4A9BBD;
}

/* Hover effect on dropdown options */
.select2-results__option--highlighted {
    background-color: #4A9BBD !important;
    color: white !important;
}

/* adhust heigt AR */
.select2-container--default .select2-selection--multiple {
    min-height: 38px !important;
    height: auto !important;
    /* border: 1px solid #ced4da !important; */
    background-color: #EFFAFF !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #4A9BBD !important;
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
}

