.form-errors li {
    color: #FF4C4C;
    font-size: 1rem;
    list-style: none;
}

.custom-dropdown { 
    position: relative; 
    width: 100%;
}
.dropdown-toggle {
    width: 100%;
    height: 52px;
    padding: var(--space-sm);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    font: 1em sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
.dropdown-list {
    position: absolute; 
    width: 100%; 
    background: #fff; 
    border: 1px solid var(--color-border);
    border-radius: 5px; 
    margin-top: var(--space-xxs); 
    max-height: 200px; 
    overflow-y: auto; 
    z-index: 10; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: small;
}
.dropdown-item {
    padding: var(--space-xs) var(--space-sm); cursor: pointer; display: flex; align-items: center; gap: var(--space-xs);
}
.dropdown-item:hover { background: #f5f5f5; }
.whatsapp-row {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}
.whatsapp-row .custom-dropdown {
    flex: 0 0 180px;
    min-width: 140px;
}
.whatsapp-row input[type="tel"] {
    flex: 1 1 auto;
    min-width: 0;
}
@media (max-width: 600px) {
    .whatsapp-row {
        flex-direction: row !important;
        align-items: center !important;
        gap: var(--space-xxs);
    }
    .whatsapp-row .custom-dropdown {
        flex: 0 0 210px;
        min-width: 90px;
        max-width: 35vw;
    }
    .whatsapp-row input[type="tel"] {
        flex: 1 1 0;
        min-width: 0;
        max-width: 100%;
    }
}
@media (max-width: 400px) {
    .dropdown-toggle {
        font-size: smaller;
    }
}