/* Hide modals by default */
.modal-hidden {
    display: none;
}

/* Modal styling */
.modal {
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

/* Close button styling */
.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    font-family: "ETmodules"; /* Ensure this font-family for Divi's icons */
}