.table-post-container {
    overflow-x: auto;
}

.table-post-container::-webkit-scrollbar {
    height: 0.5rem;
}

.table-post-container::-webkit-scrollbar-thumb {
    background: #6c6c6e;
    border-radius: 20px;
}

.table-post-container::-webkit-scrollbar-track {
    background: var(--border-color);
}

.table-post {
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    table-layout: fixed;
    border-collapse: collapse;
    line-height: 140%;
    min-width: 600px;
}

.table-post thead {
    text-align: left;
}

.table-post thead tr th {
    color: #666;
    font-weight: 400;
}

.table-post th,
.table-post td {
    padding: 0.5rem 1rem;
}

.table-post th,
.table-post td {
    border: 1px solid var(--border-color);
    border-collapse: collapse;
}


.table-post thead tr th:first-child,
.table-post tbody tr td:first-child {
    border-left: none;
}


.table-post thead tr th:last-child,
.table-post tbody tr td:last-child {
    border-right: none;
}



@media (max-width: 1100px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}