#modal.hidden {
    display: none;
}

#modal {
    position: fixed;
    top: 60px;
    right: 0;
    width: 40%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    margin-left: auto;
    z-index: 100;
    overflow: auto;
}

#modal-title {
    text-decoration: underline;
}

#modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    max-height: 75vh;
    text-align: center;
    align-items: center;
    overflow-y: auto;
}

#close {
    cursor: pointer;
    float: right;
    font-size: 24px;
}
