@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&amp;display=swap');

/* Modal */
/* Modal Background */
#rsvpModal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

#rsvpModal h4 {
    font-family: "Raleway", sans-serif;
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

/* Close Button */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Close button for some templates */
.closeModal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Input Fields */
#rsvpForm input[type="text"],
#rsvpForm input[type="email"],
#rsvpForm input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Optional: Better button styling */
#rsvpForm button {
    background-color: #6c4b9a;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

#rsvpForm button:hover {
    background-color: #5a3d80;
}

/* Radio Button Styling */
.radio-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

.radio-label input {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.radio-label input:checked + .custom-radio {
    background-color: #6c4b9a;
    border-color: #6c4b9a;
}

.radio-label input:checked + .custom-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
