.table-control {
    width: 100%;
    display: block;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
}

.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid var(--secondary);
}

.table thead{
    border-bottom: 1px solid var(--secondary);
}

.table tr th {
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
    font-size: bold;
}

.table tr th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table tr th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table tr td {
    padding: 6px;
    font-size: 14px;
    border-bottom: 1px solid var(--secondary);
    white-space: nowrap;
}

.table .hover-list:hover td {
    background: var(--secondary);
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 12px
}

.pagination span {
    color: black;
    float: left;
    text-decoration: none;
    transition: background-color .3s;
    border-radius: 3px;
    margin: 0 4px;
    font-size: 13px;
}

.pagination span.active {
    background-color: var(--info);
    color: white;
    border: 1px solid var(--info);
}

.pagination span:hover:not(.active) {
    background-color: #ddd;
}

@media screen and (max-width: 768px) {
    .table tr th {
        font-size: 13px;
    }
}