/* select2-custom.css */
.select2-container--default .select2-selection--single {
    height: 58px;
    border-radius: 0.75rem;
    border: none;
    padding: 0.5rem 1rem;
    box-shadow: none;
    background-color: white;
    width: 100%;
    outline: none;
    transition: all 0.3s;
    position: relative;
}

.select2-container--default .select2-selection--single:focus {
    box-shadow: 0 0 0 2px rgba(71, 135, 250, 0.5);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 42px;
    padding-left: 0;
    font-size: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6b7280;
}

/* Fix for the clear button position */
.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 58px;
    line-height: 58px;
    margin-right: 30px;
    font-size: 1.25rem;
    color: #6b7280;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
}

/* Ensure the arrow button has the right position */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px;
    position: absolute;
    top: 0;
    right: 8px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6b7280 transparent transparent transparent;
    border-width: 6px 6px 0 6px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6b7280 transparent;
    border-width: 0 6px 6px 6px;
}

.select2-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
    margin-top: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #4787FA;
    box-shadow: 0 0 0 2px rgba(71, 135, 250, 0.25);
}

.select2-container--default .select2-results__option {
    padding: 10px 12px;
    font-size: 0.95rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4787FA;
    color: white;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(71, 135, 250, 0.1);
    color: #4787FA;
}

.select2 {
    width: 100% !important;
}

.select2-container--open {
    z-index: 9999;
}

.select2-container--default {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
}