
/* Style for the button */
#enrollLink {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* The Modal (background) */
#contactFormOverlay {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
#contactForm {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 420px; /* Update width */
    height: auto; /* Adjust height to content */
}

/* Close Button */
#closeBtn {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#closeBtn:hover,
#closeBtn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Form Inputs and Button */
#enrollForm input[type="text"],
#enrollForm input[type="email"],
#enrollForm input[type="tel"],
#enrollForm select[type="radio"],
#enrollForm button {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#enrollForm button {
    background-color: #007bff; /* Update button color */
    color: white;
    border: none;
    cursor: pointer;
}

#enrollForm button:hover {
    background-color: #ff7f0e; /* Update button hover color */
    color: white; /* Update button hover text color */
}

