.popup {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: hidden;
    position: fixed;
    display: none;
}

.title-popup {
    margin-left: 15px;
    font-style: italic;
    font-size: 35px;
    display: inline;
}

.popup-top {
    max-height: 60px;
    height: 60px;
    border-bottom: 1px solid black;
}

.popup-top-content {
    margin-top: 5px;
}

.popup-close {
    float:inline-end;
    margin-right: 15px;
    margin-top: 12px;
    cursor: pointer;
}

.popup-content {
    width: 650px;
    max-height: 100vh;
    overflow-y: auto; 
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    border: 1.5px solid black;
    border-radius: 10px;
}

.table-element-list {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.btn-popup {
    float: inline-end;
}