.message.warning {
    display: none !important;
}

.custom-zipcode-warning {
    color: #e02b27;
    font-size: 12px;
    margin-top: 7px;
    display: none;
}

.custom-zipcode-warning.visible {
    display: block;
} 

.address-suggestion-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1001;
    width: 400px;
    max-width: 90%;
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.address-suggestion-popup .popup-header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.address-suggestion-popup .popup-content {
    margin-bottom: 15px;
}

.address-suggestion-popup .popup-actions {
    display: flex;
    justify-content: space-between;
}

.address-suggestion-popup .address-details {
    background: #f8f8f8;
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
}