.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content ul {
    margin-bottom: 15px;
}

.modal-content li {
    margin-bottom: 5px;


}

.modal-content button {
    width: 100%;
    padding: 10px;
}
