/* Stylizacja Select2 dla pól adresowych */
.fef-address-field .select2-container {
    max-width: 100%;
}

.fef-address-field .select2-container .select2-selection--single {
    height: auto;
    min-height: 38px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.fef-address-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
    padding-left: 0;
    color: #555;
}

.fef-address-field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    right: 8px;
}

.fef-address-field .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

/* Dopasowanie do stylów Formidable Forms */
.frm_form_field .select2-container {
    display: block;
}

.frm_form_field .select2-container--open .select2-dropdown {
    z-index: 999999;
}

/* Style dla wyszukiwarki w dropdown */
.select2-search--dropdown {
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white;
}

/* Responsywność */
@media (max-width: 768px) {
    .fef-address-field .select2-container .select2-selection--single {
        font-size: 16px; /* Zapobiega auto-zoom na iOS */
    }
}

