.full_window_area {
    min-height: calc(var--vh, 100vh);
}
div.table-scroll {
    overflow-y: scroll;
}
table.table-header {
    margin-bottom: 0;
}
table.table-header th {
    text-align:  center;
}
table.table-body td.button {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
table.table-body td .list-icon {
    height: 2em;
    width: auto;
}
table.table-body td.number2,
table.table-body td.number3,
table.table-body td.number4,
table.table-body td.number5 {
    text-align: center;
}
table.table-body td.number2 span,
table.table-body td.number3 span,
table.table-body td.number4 span,
table.table-body td.number5 span {
    display: inline-block;
    text-align: right;
}
table.table-body td.number2 span {
    width: 1.5em;
}
table.table-body td.number3 span {
    width: 2em;
}
table.table-body td.number4 span {
    width: 2.5em;
}
table.table-body td.number5 span {
    width: 3em;
}
@media screen and (max-width: 520px) {
    div.list-area {
        padding: 0!important;
    }
}

.button_edit {
    background: #047857;
}
.button_edit:hover {
    background: #10B981;
}
.button_addnew {
    background: #1D4ED8;
}
.button_addnew:hover {
    background: #3B82F6;
}
.button_delete {
    background: #B91C1C;
}
.button_delete:hover {
    background: #EF4444;
}
.button_copy {
    background: #B45309;
}
.button_copy:hover {
    background: #F59E0B;
}
.button_copy_clicked {
    background: #F59E0B;
}
.button_copy_clicked:hover {
    background: #F59E0B;
}
.button_gray {
    background: #6B7280;
}
.button_gray:hover {
    background: #6B7280;
}
.button_gray:focus {
    background: #6B7280;
}
.button_read {
    background: #4338CA;
}
.button_read:hover {
    background: #6366F1;
}
.button_read_light {
    background: #6366F1;
}
.button_read_light:hover {
    background: #A5B4FC;
}
.button_filter {
    background: #B45309;
}
.button_filter:hover {
    background: #F59E0B;
}

.switch {
    vertical-align: middle;
}
.switch__label {
    width: 50px;
    position: relative;
    display: inline-block;
    margin-top: 4px;
    margin-bottom: 0;
}
.switch__content {
    display: block;
    cursor: pointer;
    position: relative;
    border-radius: 30px;
    height: 31px;
    overflow: hidden;
}
.switch__content:before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    top: 0;
    left: 0;
    border: 1.5px solid #E5E5EA;
    border-radius: 30px;
    background-color: #fff;
}
.switch__content:after {
    content: "";
    display: block;
    position: absolute;
    background-color: transparent;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    border-radius: 30px;
    -webkit-transition: all .11s;
       -moz-transition: all .11s;
        -ms-transition: all .11s;
         -o-transition: all .11s;
            transition: all .11s;
}
.switch__input {
    display: none;
}
.switch__circle {
    display: block;
    top: 2px;
    left: 2px;
    position: absolute;
    -webkit-box-shadow: 0 2px 6px #999;
            box-shadow: 0 2px 6px #999;
    width: 27px;
    height: 27px;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    background-color: #fff;
    -webkit-transition: all .11s;
       -moz-transition: all .11s;
        -ms-transition: all .11s;
         -o-transition: all .11s;
            transition: all .11s;
}
.switch__input:checked ~ .switch__circle {
    left: 21px;
}
.switch__input:checked ~ .switch__content:after {
    background-color: #00c4cc;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup {
    z-index: 999;
    display: none;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
}
.popup_content {
    margin: 5vh auto;
    z-index: 9999;
    display: none;
    background: #fff;
    opacity: 1;
    width: 90vw;
    height: 80vh;
    max-width: 1024px;
    max-height: 600px;
}
.popup_message_area {
    width: 90%;
    height: calc(90% - 50px);
    padding: 10px;
    position: relative;
    top: 5%;
    left: 5%;
    border: 1px solid #ccc;
    overflow-y: auto;
}
.popup_button_area {
    width: 90%;
    height: 50px;
    position: relative;
    top: calc(5% + 15px );
    left: 5%;
    text-align: center;
}
.popup_message_area div {
    margin: 5px 0;
}
.popup_message_area span {
    display: inline-block;
}
