.phone-input-container {
    position: relative;
    display: flex;
    width: 100%;
}

.country-code-selector {
    display: flex;
    align-items: center;
    width: 30%;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    padding: 0 10px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.country-code-selector img {
    width: 24px;
    height: 16px;
    margin-right: 5px;
}

.phone-input-container input {
    width: 70%;
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    z-index: 1000;
    display: none;
}

.country-dropdown.show {
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
}

.country-option:hover {
    background-color: #f5f5f5;
}

.country-option img {
    width: 24px;
    height: 16px;
    margin-right: 10px;
}

.country-option .country-name {
    flex-grow: 1;
}

.country-option .country-code {
    color: #666;
}

/* Styles pour les logos de paiement sur la page SMS */
.payment-logos-sms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.payment-logos-sms img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
