/* modal window */
#modal {
    z-index: 2;
    width: 50%;
    max-height: 70%;
    margin: 0 ;
    overflow: auto;
    padding: 10px 20px ;
    border: 1px solid #aaa ;
    border-radius: 10px;
    background-color: white ;
    position: fixed;
    top: 15%;
    left: 25%;
    display: none;
}

#modal_wrapper table td {
    font-size: 1.3rem;
    word-break: break-all;
}

#modal_wrapper table td:nth-child(odd){
    width: 25%;
}

#modal-overlay {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
}

.buttons_area {
    width: 100%;
    height: 2.5rem;
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.button_items {
    display: inline-block;
    width: 50%;
    height: 100%;
}

.button_items button {
    display: inline-block;
    width: 30%;
    height: 3rem;
    border: 1px solid #aaa ;
    border-radius: 3px;
    margin: 0px 20px;
}

.fixed {
    position: fixed;
}