/* Custom Table */
.table-responsive {
    border-radius: 8px;
}
.custom-table {
    border-collapse: collapse;
    width: 100%;
}
.custom-table th{
    padding: var(--padding-lg);
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
}
.custom-table td {
    align-items: center; /* Tidak berfungsi pada <td>, bisa dihapus */
    vertical-align: middle; /* Pastikan teks ada di tengah secara vertikal */
    padding: 20px var(--padding-lg);
    color: var(--text-black-body, #4C5257);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
}
.table-board .custom-table td {
    align-items: center; /* Tidak berfungsi pada <td>, bisa dihapus */
    vertical-align: middle; /* Pastikan teks ada di tengah secara vertikal */
    padding: 20px var(--padding-lg);
    color: var(--text-black-body, #4C5257);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    background: #fff;
}
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #F7F7F7;
}
.custom-table th {
    background-color: #F7F7F7;
}
