.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;
}
td, td *{
    font-family: Belleza;
    font-size: 1.2rem !important;
    text-align: justify;
}
thead th{
    background-color: #F6CA9E;
    z-index: 10;
    font-family: Belleza;
    font-weight: bold;
    font-size: 1.2rem;
}
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;
}
th, td{
    padding: 0.5rem 1rem;
}
td[data-textalign="center"]{
    text-align: center;
}
td[data-headercolumn="odd"], td[data-headercolumn="even"], td[data-headercolumn="true"]{
    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;
}