.select2-with-icon .select2-container--default {
    width: 100% !important;
}

.select2-with-icon .select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0 0.75rem;
    background-color: white;
    transition: all 0.3s ease;
}

.select2-with-icon .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #115ec6;
    box-shadow: 0 0 0 3px rgba(17, 94, 198, 0.1);
}

.select2-with-icon .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 2.5rem;
    color: #1e293b;
    font-size: 0.875rem;
}

.select2-with-icon .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 50%;
    transform: translateY(-50%);
    border-color: #94a3b8 transparent transparent transparent;
}

#empty-state-placeholder,
#loading-state {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .select2-with-icon .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 36px;
        padding-left: 2rem;
    }
}
