.table-wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.table-title{
    width: 100%;
    font-size: 1.2rem;
    font-family: Belleza;
    text-align: center;
    display: block;
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
}
.table-title::before{
    content: 'Table ' attr(data-tablenum) ': ';
    font-weight: bold;
}
.table-container{
    max-width: 100%;
    width: fit-content;
    overflow-x: auto;
    overflow-y: hidden;
}
table{
    border-style: solid;
    border-width: 4px 0;
    border-color: #C1814C;
    border-spacing: 0;
    border-collapse: collapse;
}
thead{
    border-style: solid;
    border-width: 0 0 2px 0;
    border-color: #C1814C;
    background-color: #F6CA9E;
}
/* thead tr{
    position: sticky;
    top: 86px;
} */
td, td *{
    font-family: Belleza;
    /* font-weight: bold; */
    font-size: 1rem !important;
    text-align: justify;
}
thead th{
    background-color: #F6CA9E;
    z-index: 10;
    font-family: Belleza;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
}
tbody tr:nth-child(odd){
    background-color: #F5DEC8;
}
tbody tr:nth-child(odd) td{
    background-color: #F5DEC8;
}
tbody tr:nth-child(even){
    background-color: #FDF7ED;
}
tbody tr:nth-child(even) td{
    /* background-color: #FDF7ED; */
    background-color: #F9EBE0;
}
th, td{
    padding: 0.5rem 1rem;
}
td[data-textalign="justify"]{
    text-align: justify !important;
}
td[data-textalign="left"]{
    text-align: left !important;
}
td[data-textalign="center"]{
    text-align: center !important;
}
td[data-textalign="right"]{
    text-align: right !important;
}
/* th[data-headercolumn="true"], td[data-headercolumn="true"], td[data-headercolumn="odd"], td[data-headercolumn="even"]{
    position: sticky;
    left: 0;
} */
/* th[data-headercolumn="true"]{
    z-index: 20;
} */
td[data-headercolumn="odd"], td[data-headercolumn="even"], td[data-headercolumn="true"]{
    /* z-index: 10; */
    font-family: Belleza;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}
td.headercolumn-odd, td.headercolumn-even{
    font-family: Belleza;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}
td.headercolumn-odd{
    background-color: #E6BE98 !important;
}
td.headercolumn-even{
    background-color: #EBCAAA !important;
}