/* Modal Box */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Positioning fixed */
    z-index: 1; /* Ensure it stays on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scrolling if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
}

/* Modal content */
.modal-content {
    background-color: black;
    color: white; /* White background */
    margin: 15% auto; /* Center modal vertically and horizontally */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 70%;
    height: 70% /* Adjust modal width as needed */
}

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

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

/* Button styles */
.modal-content button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #6b0000; /* Match your theme background color */
    color: #fff; /* White text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0056b3; /* Darker blue background color on hover */
}
