.chart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.chart-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
#legendInside {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    color: black;
    width: 65%;
    line-height: 1.3;
    pointer-events: none;
}
#externalLegend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}
.legend-item {
    display: flex;
    align-items: center;
    margin: 0 10px 10px 10px;
    cursor: pointer;
}
.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 3px;
}
.legend-item span{
    width: calc(100% - 20px);
    display: block;
}
.custom-table-wrapper table thead th{
    border-bottom: 2px solid #143131;
    color: #143131;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.62;
    text-transform: uppercase;
    padding-left: 16px;
}
.custom-table-wrapper table tbody tr td{
    border-bottom: 1px dashed #1431314d;
    color: #143131;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.52;
    padding: 16px;
}
.custom-table-wrapper table tbody tr:last-child td{
    border-bottom: none;
}
.custom-table-wrapper .dataTables_info,
.custom-table-wrapper .dataTables_paginate{
    color: #143131;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.52;
    padding-top: 16px;
}
.custom-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.custom-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    background: none;
    border: none;
    margin: 0;
    padding: 0 4px;
}
.custom-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button{
    padding: 0 4px;
    font-weight: 500;
}
.custom-table-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button.current{
    font-weight: 700;
}
.custom-table-wrapper .dataTables_length{
    float: right;
}
.custom-table-wrapper .dataTables_length label{
    font-size: 0;
}
.custom-table-wrapper .dataTables_length label select{
    font-size: 16px;
    margin-left: 16px;
    border-color: #143131;
    font-weight: 600;
}
.dataTables_wrapper .dataTables_filter input{
    border-color: #143131;
}
.dataTables_wrapper .dataTables_filter {
    font-weight: 600;
}
.custom-table-wrapper table tbody tr.odd{
    background-color: #ffffff80;
}
.custom-table-wrapper table tbody tr.even{
    background-color: #f0f0ea;
}

@media screen and (max-width:1199.98px) {
    #externalLegend{
        justify-content: flex-start
    }
}