body {
    font-family: Arial;
    margin: 0px;
    padding: 0px;
    background: #f6f6f6;
}

.container01 {
    display: block;
    padding: 20px;
}

.container02 {
    display: block;
    padding-top: 20px;
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

.btn-create {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    width: fit-content;
    font-size: 14px;
    padding: 7px;
    color: white;
    border: none;
    background: #6c7ae0;
    border-radius: 5px;
}

.btn-delete {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    width: fit-content;
    font-size: 14px;
    padding: 7px;
    color: white;
    border: none;
    background: tomato;
    border-radius: 5px;
}

.overlay {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.overlay > div {
    background: white;
    padding: 20px;
    max-height : calc(100vh - 100px);
    border-radius: 10px;
    overflow-y: auto;
}

.div-btn-submit {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
}

.div-btn-submit > button:first-child {
    display: flex;
    flex: 1;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    width: fit-content;
    font-size: 14px;
    padding: 10px;
    color: white;
    border: none;
    background: dodgerblue;
    border-radius: 5px;
    text-align: center;
    opacity: 0.7;
}

.div-btn-submit > button:last-child {
    display: flex;
    flex: 1;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    width: fit-content;
    font-size: 14px;
    padding: 10px;
    color: black;
    border: none;
    background: lightgray;
    border-radius: 5px;
    text-align: center;
    opacity: 0.7;
}

.div-btn-submit > button:first-child:hover {
    opacity: 1;
}

.div-btn-submit > button:last-child:hover {
    opacity: 1;
}

.labelinputbox {
    font-size: 14px;
}

.inputbox {
    font-family: Arial;
    padding: 7px;
    border: 1px solid black;
    border-radius: 5px;
}

.table01, .table01 td, .table01 th {
    border: 1px solid;
}

.table01 {
    width: 100%;
    border-collapse: collapse;
}

.table01 th, .table01 td {
    padding: 5px;
}

.table02 {
    font-size: 15px;
    width: 100%;
    border-collapse: collapse;
}
.table02 td {
    background: white;
}
.table02 th, .table02 td {
    padding: 10px;
}
.table02 th {
    color: white;
    background: #6c7ae0;
}
.table02 > tbody > tr:hover > td {
    background: lightgray;
}
.table02 > tbody > tr:first-child > th:first-child {
    border-top-left-radius: 5px;
}
.table02 > tbody > tr:first-child > th:last-child {
    border-top-right-radius: 5px;
}
.table02 > tbody > tr:last-child > td:first-child {
    border-bottom-left-radius: 5px;
}
.table02 > tbody > tr:last-child > td:last-child {
    border-bottom-right-radius: 5px;
}
.table02 td[tc] {
    text-align: center;
}
.table02 td[td_btn] {
    display: flex;
    justify-content: right;
    padding-right: 20px;
    gap: 10px;
}