.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #111827 !important; /* темный фон */
    border: 1px solid rgba(59, 130, 246, 0.25) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    color: #e5e7eb !important;
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3B82F6 #111827;
}

/* Hover на страну */
.iti__country:hover {
    background-color: rgba(59, 130, 246, 0.15) !important;
    color: #fff !important;
}

/* Активная страна */
.iti__country.iti__highlight {
    background-color: rgba(59, 130, 246, 0.25) !important;
    color: #fff !important;
}

/* Название и код страны */
.iti__country-name, .iti__dial-code {
    color: #e5e7eb !important;
    font-weight: 500;
}

/* Флаг и текст — выровнять */
.iti__country {
    display: flex;
    align-items: center;
    padding: 8px 12px;
}

/* Скроллбар стиль */
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}
.iti__country-list::-webkit-scrollbar-thumb {
    background: #3B82F6;
    border-radius: 3px;
}

/* Инпут */
input[type="tel"].iti__tel-input {
    background-color: #1f2937 !important; /* совпадает с формой */
    border: 1px solid #374151 !important;
    border-radius: 0.5rem;
    color: #fff !important;
    padding-left: 50px !important; /* под флаг */
}

/* Флаг */
.iti__selected-flag {
    background-color: transparent !important;
}

.iti__country-list {
    animation: dropdown-glow 0.2s ease-out;
}

@keyframes dropdown-glow {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}