/* assets/css/modal.css */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.8); /* More transparent white */
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.modal-content h2 {
    margin:0;
}
.modal-content .modal-body {
    margin-top: 10px;
    margin-bottom:20px;
    flex:1;
}

.modal.hidden {
    display: none;
}

#modal-accept {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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