.content_table_container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.content_table {
    width: 100%;
    border-collapse: collapse;
}

.content_table tbody tr {
    transition: filter 0.15s ease;
}

.content_table tbody tr:hover {
    filter: brightness(0.88);
    cursor: default;
}

.wct-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.wct-pagination .wct-page-btn {
    display: inline-block;
    box-sizing: border-box;
    padding: 4px 10px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.875em;
    font-family: inherit;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    letter-spacing: normal;
    text-transform: none;
    box-shadow: none;
    user-select: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wct-pagination .wct-page-btn:hover:not(.disabled) {
    background: #f0f0f0;
    border-color: #999;
    color: #333;
}

.wct-pagination .wct-page-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
    font-weight: bold;
}

.wct-pagination .wct-page-btn.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.wct-pagination-info {
    margin-left: 8px;
    font-size: 0.8em;
    color: #666;
}

@media screen and (max-width: 768px) {
    .content_table thead {
        display: none;
    }

    .content_table,
    .content_table tbody,
    .content_table tr,
    .content_table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .content_table tr {
        margin-bottom: 1em;
        border: 1px solid #ddd;
    }

    .content_table td {
        padding: 0.6em 0.5em 0.6em 50%;
        position: relative;
        text-align: left !important;
        border-bottom: 1px solid #eee;
        min-height: 2.5em;
    }

    .content_table td::before {
        content: attr(data-title);
        position: absolute;
        top: 0.6em;
        left: 0.5em;
        width: 45%;
        font-weight: bold;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
