.phone-input-container {
    margin-bottom: 1rem;
}

.phone-input-wrapper {
    display: flex;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: #fff;
}

.phone-input-wrapper:focus-within {
    border-color: #0F766E;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.country-selector {
    flex-shrink: 0;
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
}

.country-select {
    appearance: none;
    border: none;
    background: transparent;
    padding: 12px 32px 12px 12px;
    font-size: 14px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 90px;
}

.country-select:focus {
    outline: none;
}

.phone-number-input {
    flex: 1;
    display: flex;
    align-items: center;
}

.country-code-display {
    padding: 12px 4px 12px 12px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    background: #f0f0f0;
    border-right: 1px solid #e0e0e0;
}

.phone-number {
    flex: 1;
    border: none !important;
    padding: 12px 12px 12px 8px !important;
    font-size: 14px;
    box-shadow: none !important;
}

.phone-number:focus {
    outline: none;
    box-shadow: none !important;
}

.country-select option {
    padding: 10px;
    font-size: 14px;
}
