.agenda-table-container {
    max-width: 90vmax;
    margin: 0 auto;
    padding: 20px;
}

.table-wrapper {
    overflow-x: auto;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
}

    .agenda-table th,
    .agenda-table td {
        border: 1px solid black;
        padding: 8px;
        text-align: center;
        vertical-align: middle;
    }

    .agenda-table thead th {
        background-color: #2980b9;
        color: #fff;
    }

    .agenda-table tbody tr:nth-child(odd) {
        background-color: #f6f6f6;
        color: black;
        font-size: 14px;
    }

    .agenda-table tbody tr:nth-child(even) {
        background-color: #2980b98a;
        color: black;
        font-size: 14px;
    }

.btn-more {
    display: inline-block;
    padding: 6px 12px;
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

    .btn-more:hover {
        background-color: #1f5f8a;
    }

.no-file-text {
    font-size: 0.85rem;
    color: #555;
    margin-top: 4px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.pagination-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
}

.pagination-item a,
.pagination-item span {
    display: block;
    padding: 6px 12px;
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.pagination-item.current-page span {
    background-color: #ddd;
    color: #333;
}

.pagination-item.disabled a {
    pointer-events: none;
    background-color: #ccc;
    color: #666;
}

@media screen and (max-width: 768px) {
    .agenda-table thead {
        display: none;
    }

    .agenda-table,
    .agenda-table tbody,
    .agenda-table tr,
    .agenda-table td,
    .agenda-table th {
        display: block;
        width: 100%;
    }

        .agenda-table tr {
            margin-bottom: 16px;
        }

        .agenda-table td {
            position: relative;
            padding-right: 25%;
            text-align: right;
        }

            .agenda-table td:before {
                content: attr(data-title);
                position: absolute;
                right: 0;
                width: 45%;
                padding-right: 8px;
                font-weight: bold;
            }
}
