.cfdb7-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    flex-wrap: wrap;
    padding: 0;
}

.cfdb7-tabs li {
    padding: 8px 15px;
    background: #cb6e52;
    border-radius: 4px;
    color: white;
    list-style: none;
    transition: background 0.3s, color 0.3s;
}

.cfdb7-tabs li.active {
    background: #aa5d46;
    color: #fff;
}

.cfdb7-tab-content {
    display: none;
    margin-bottom: 40px;
}

.cfdb7-tab-content.active {
    display: block;
}

table.cfdb7-table {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 1.4rem;
    word-break: break-all;
}

table.cfdb7-table th,
table.cfdb7-table td {
    width: 300px;
    border: 1px solid #555555;
    padding: 8px;
    text-align: left;
    vertical-align: top;
    color: black;
}

.page_content ul li:before{
    display: none;
}

table.cfdb7-table th {
    background-color: #252525;
    font-weight: bold;
    color: white;
}

.cfdb7-pagination a {
    display: inline-block;
    padding: 4px 8px;
    margin: 0 2px;
    background: #dbc088;
    color: black;
    text-decoration: none;
    border-radius: 4px;
}
.cfdb7-pagination a:hover {
    background: #dbc088;
}

@media (max-width: 1024px) {
    .cfdb7-tab-content {
        overflow-x: auto;
    }

    table.cfdb7-table {
        width: 100%;
        min-width: 600px;
        display: block;
    }

    table.cfdb7-table thead {
        display: table-header-group;
    }
}
