/* Verborgen checkbox */
#modal-toggle {
    display: none;
}

.open-modal {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.modal-overlay {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    position: relative;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.modal h2 {
    text-align: center;
}


.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.modal .new {
    float: right;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
}

.modal .loginAsMember {
    font-weight: bolder;
    cursor: pointer;
    margin-left: 8px;
}

.contractContent {
    max-height: 70vh;
    overflow-y: scroll;
}

@media (min-width: 0px) and (max-width: 426px) {
    .contractContent {
        max-height: 57vh!important;
    }
}
