.horizontal-scroll {
    overflow-x: scroll;
    overflow: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    width: 100%;
    margin-bottom: 20px;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 4px;
    background: #DBE2EB;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    outline: none;
    border-radius: 4px;
}

table {
    width: auto;
    padding: 0;
    margin: 0 0 25px 0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

table tr td,
table tr th {
    padding: 10px 5px;
    font-size: 15px;
    line-height: 1.2;
}

table tr th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
}

table tr:nth-child(odd) {
    background-color: #fff;
}
table tr:nth-child(even) {
    background-color: var(--secondary-color);
}

