.phone-input-container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.phone-label {
    color: #5e5e5e;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height);
    margin-bottom: 15px;
}

.phone-wrapper {
    display: flex;
    border: 2px solid #f0f0f0;
    border-radius: 5px;
    overflow: visible;
    /* Dropdown kəsməsin deyə visible etdik */
    transition: border-color 0.3s;
}

.phone-wrapper:focus-within {
    border-color: #f0f0f0;
}

/* Custom Select - DÜZƏLİŞ BURADADIR */
.operator-select {
    position: relative;
    /* Bu mütləq olmalıdır */
    min-width: 120px;
    z-index: 100;
    /* Inputdan yuxarıda qalsın */
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    background-color: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    width: 100%;
    transition: background-color 0.3s;
    /* Ayrılıq xətti */
}

.select-trigger:hover {
    background-color: #e9ecef;
}

.select-trigger.active {
    background-color: #e9ecef;
    border-bottom: 2px solid #e0e0e0;
}

.operator-code {
    color: #5e5e5e;
    font-weight: 700;
}

.arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s;
}

.arrow.open {
    transform: rotate(180deg);
}

/* Dropdown - Düzəlişlər */
.operator-dropdown {
    position: absolute;
    top: 100%;
    /* Triggerin dərhal altı */
    left: -2px;
    /* Border hizalanması üçün */
    right: -2px;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}

.operator-dropdown.show {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.operator-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.operator-option:last-child {
    border-bottom: none;
}

.operator-option:hover {
    background-color: #f8f9fa;
}

.operator-option.selected {
    color: #ef8c61;
    font-weight: 600;
}

/* Phone Input */
.phone-number-input {
    flex: 1;
    padding: 12px 9px;
    border: none;
    font-size: 15px;
    outline: none;
    background: #f0f0f0;
}

.phone-number-input::placeholder {
    color: #999;
}

/* Full number display */
.full-number {
    margin-top: 15px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
}

.full-number strong {
    color: #4CAF50;
    font-size: 16px;
}