/* Modal container to cover the whole page */
#feedback-modal {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    z-index: 1000; /* Ensure it is on top of other elements */
    align-items: center; /* Center the modal vertically */
    justify-content: center; /* Center the modal horizontally */
    display: flex;
}

/* Modal content */
.feedback-modal-content {
    background-color: #ffffff; /* White modal background */
    padding: 40px 10px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Add a shadow for some depth */
    max-width: 500px; /* Limit the width of the modal */
    text-align: center;
}