.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: calc(1.5em + 1.375rem + 2px);
    padding: 0 1rem 0 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4c5a73;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid #E0E0E0;
    box-sizing: border-box; 
}
.select2-container .select2-selection--single:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0 .2rem #fed7df;
}

.select2-container .select2-selection__arrow {
    right: 10px !important;
    top: 50% !important; 
    transform: translateY(-50%);
}
.select2-container .select2-dropdown {
    border-radius: 4px;
    border: 1px solid #ccc; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.select2-container .select2-results__option {
    padding: 6px 12px;
    font-size: 14px;
}

