/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Button */
.modal-button {
    background-color: #007bff; /* Blue color */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.modal-button:hover {
    background-color: #45a049;
}

#modalMessage {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Stylish font family */
    font-size: 18px; /* Increase font size */
    font-weight: bold; /* Make text bold */
    color: #333; /* Dark color for the text for better contrast */
    text-align: center; /* Center the text */
    line-height: 1.5; /* Add some space between lines */
    margin-bottom: 20px; /* Space between the text and the button */
}

/* Optional: Add a slight shadow to the text to make it pop */
#modalMessage {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
