.modal {
    align-items: center;
    background-color: var(--color-background-overline);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

.modalContent {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow-xs);   
    max-width: 500px;
    padding: 20px;
    width: 100%;
}

.closeButton {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 10px;
}