#modal_bg {
    display: none;
    z-index: 20;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #0000008a;
    backdrop-filter: blur(3px);
}

.modal {
    display: none;
    z-index: 21;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    width: 76%;
    text-align: center;
    background: #aaaaaabf;
    box-shadow: 0px 2px 3px 0px #00000080 inset, 0px 1px 0px 0px #FFFFFF4D;
    border: 0px;
    border-radius: 8px;
    padding: 30px;
}

.modal .modal_title {
    margin-bottom: 30px;
}

.modal .modal_content {
    margin-bottom: 30px;
}

.modal .modal_content span {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.modal .modal_content span b {
    color: #898989;
}

.modal .modal_btns {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.modal .modal_btns button {
    background: linear-gradient(180deg, #2C2E2F 0%, #404142 100%);
    box-shadow: 0px 3px 5px 0px #00000066, 0px 1px 0px 0px #FFFFFF4D inset;
    border: 0px;
    border-radius: 8px;
    width: 30%;
    padding: 10px;
}

/* MODAL TABLE */
.modal .modal_content .table_box1 table {
    width: 100%;
    border-collapse: collapse;
}

.modal .modal_content .table_box1 thead tr th {
    border-bottom: 1px solid #ddd;
    padding: 10px 5px;
}

.modal .modal_content .table_box1 tbody tr td {
    padding: 10px 5px;
    border-bottom: 1px dashed #ddd;
}
