
/* Ensure address autocomplete suggestions match the input width */
.email-autocomplete-suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    display: none;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: 98%; 
}


.email-autocomplete-suggestions div {
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
}

.email-autocomplete-suggestions div:hover {
    background: #f1f1f1;
}

@media (max-width: 768px) {
    .email-autocomplete-suggestions {
        min-width: 100%; 
        left: 0; 
    }
}

