
table{
    width: 100%;
    border-collapse : collapse;
    border-top: 2px solid var(--color-bk);
    border-bottom: 2px solid var(--color-bk);
}

thead{
    background-color: var(--color-hl-sub);
}

tbody{
    background-color: var(--color-wh);
}

th{
    color: var(--color-wh);
    font-weight: 600;
    border-right: 1px solid var(--color-wh);
}

th:last-of-type{
    border: none;
}

td{
    color: var(--color-bk);
    font-weight: 400;
}

tr{
    border-bottom: 1px solid #EDF0F3;
}

td:not(tbody > tr:first-of-type > td:last-of-type){
    border-right: 1px solid #EDF0F3;
}

th, td{
    letter-spacing: -0.02em;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    text-align: center;
    padding: var(--size-xs) calc(0.5 * var(--size-xs));
    line-height: 150%;
}

td > span{
    font-weight: 700;
}

.table-wrapper{
    width: 100%;      
    overflow-x: auto;    
}


.table-wrapper table {
  width: 100%;     
  min-width: 512px;            
}

@media screen and (max-width: 576px) {
    th, td{
    font-size: 15px;
}


    .table-wrapper table {
    width: max-content;     
}
}