body{
    font-family: "Faculty Glyphic", sans-serif;

}
/* Overlay background (modal) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none; /* Hidden initially */
}

/* Modal dialog container */
.modal-dialog {
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Modal content */
.modal-content {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal header and footer for alignment */
.modal-header, .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button for modal */
button.close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

button.close:hover {
    color: #007bff;
}

/* Generic button styling (e.g., "Close" button) */
#close-modal {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#close-modal:hover {
    background-color: #0056b3;
}
