.admin-table-block {
    max-width: 1200px;
    margin: 0 auto;
}

.filters-wrapper {
    background: #dcdcdc;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;

    overflow-x: auto;
    overflow-y: hidden;
}

.admin-filters-bar {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;

    flex-wrap: nowrap;
    white-space: nowrap;
}

.admin-filters-bar select {
    height: 36px;
    padding: 0 0.9rem;
    border: 1px solid #444;
    border-radius: 6px;
    background: #ededed;
    font-size: 0.85rem;
    cursor: pointer;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;

    white-space: nowrap;
}

.checkbox-inline input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-compact {
    height: 34px;
    padding: 0 0.9rem;
    background: #e5531d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.btn-compact:hover {
    opacity: 0.9;
}

.table-container {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.table-wrapper {
    max-height: 500px;
    overflow-y: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table thead {
    position: sticky;
    top: 0;
    background: #f1f1f1;
    z-index: 10;
}

.users-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.users-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.875rem;
}

.users-table tbody tr:hover {
    background: #f8f9fa;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #495057;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.pagination a:hover {
    background: #e9ecef;
}

.pagination .active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
}
