/**
 * ═══════════════════════════════════════════════════════════════
 * TripTiles - Adminbereich Styles
 * /admin/ - Eigenständige Admin-Seite
 * Developed by Toni Sciacca - mail@tonisciacca.com
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════ PAGE LAYOUT ═══════════════ */
.admin-page {
    min-height: 100vh;
    background: var(--bg-secondary);
}

/* ═══════════════ HEADER ═══════════════ */
.admin-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.admin-page-header-inner {
    max-width: 100%;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
}

.admin-logo [data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.admin-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    background: var(--gray-100);
    border-radius: 4px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    transition: all 0.15s ease;
}

.admin-nav-link:hover {
    color: var(--text-primary);
    background: var(--gray-50);
}

.admin-nav-link [data-lucide] {
    width: 16px;
    height: 16px;
}

/* ═══════════════ MAIN LAYOUT ═══════════════ */
.admin-main {
    display: flex;
    padding-top: 64px;
    min-height: 100vh;
}

/* ═══════════════ SIDEBAR ═══════════════ */
.admin-sidebar {
    width: 240px;
    background: white;
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    position: fixed;
    top: 64px;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}

.admin-sidebar-section {
    margin-bottom: 28px;
}

.admin-sidebar-section h4 {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 12px;
    margin-bottom: 8px;
}

.admin-sidebar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.admin-sidebar-btn:hover {
    background: var(--gray-50);
    color: var(--text-primary);
}

.admin-sidebar-btn.active {
    background: var(--gray-100);
    color: var(--text-primary);
}

.admin-sidebar-btn [data-lucide] {
    width: 18px;
    height: 18px;
}

.admin-sidebar-btn span {
    flex: 1;
}

.admin-sidebar-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 10px;
}

.admin-sidebar-btn.active .admin-sidebar-count {
    background: var(--text-primary);
    color: white;
}

/* ═══════════════ CONTENT AREA ═══════════════ */
.admin-content {
    flex: 1;
    margin-left: 240px;
    padding: 24px;
    min-height: calc(100vh - 64px);
}

/* ═══════════════ PANELS ═══════════════ */
.admin-panel {
    display: none;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    min-height: calc(100vh - 112px);
}

.admin-panel.active {
    display: block;
}

.admin-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.admin-panel-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.admin-panel-toolbar {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.admin-search-box {
    position: relative;
    max-width: 320px;
}

.admin-search-box [data-lucide] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.admin-search-box input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: var(--gray-50);
    outline: none;
}

.admin-search-box input:focus {
    background: white;
    border-color: var(--gray-400);
}

.admin-panel-body {
    padding: 0;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn-admin-primary {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: var(--text-primary);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-admin-primary:hover {
    background: var(--gray-600);
}

.btn-admin-primary [data-lucide] {
    width: 16px;
    height: 16px;
}

/* ═══════════════ DATA TABLE ═══════════════ */
.admin-data-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-data-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    background: var(--gray-50);
}

.admin-data-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--text-primary);
}

.admin-data-table td strong {
    font-weight: 600;
}

.admin-data-table td.coords {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

.admin-data-table td.actions {
    text-align: right;
    white-space: nowrap;
}

.admin-data-table td.actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: white;
    color: var(--text-secondary);
    cursor: pointer;
    margin-left: 6px;
    transition: all 0.15s ease;
}

.admin-data-table td.actions button:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.admin-data-table td.actions button.delete:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

.admin-data-table td.actions button [data-lucide] {
    width: 14px;
    height: 14px;
}

.admin-data-table tbody tr:hover td {
    background: var(--gray-50);
}

/* ═══════════════ BADGES ═══════════════ */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.badge.green {
    background: #dcfce7;
    color: #16a34a;
}

.badge.gray {
    background: var(--gray-100);
    color: var(--text-secondary);
}

/* ═══════════════ LOADING & EMPTY ═══════════════ */
.admin-loading,
.admin-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    color: var(--text-muted);
    gap: 12px;
}

.admin-loading {
    flex-direction: row;
}

.admin-loading [data-lucide] {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.admin-empty [data-lucide] {
    width: 48px;
    height: 48px;
    color: var(--gray-300);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ═══════════════ DRAWER ═══════════════ */
.admin-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.admin-drawer-overlay.active {
    display: flex;
}

.admin-drawer {
    width: 640px;
    max-width: 100%;
    max-height: 90vh;
    background: white;
    border-radius: var(--border-radius-xl);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.admin-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.admin-drawer-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
}

.drawer-close:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

.drawer-close [data-lucide] {
    width: 18px;
    height: 18px;
}

.admin-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-drawer-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ═══════════════ FORM ═══════════════ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    outline: none;
    transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-cancel {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-secondary);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

.btn-cancel:hover {
    border-color: var(--gray-400);
}

.btn-save {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: var(--text-primary);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

.btn-save:hover {
    background: var(--gray-600);
}

.btn-delete {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: #ef4444;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    margin-right: auto;
}

.btn-delete:hover {
    border-color: #ef4444;
    background: #fef2f2;
}

.btn-delete [data-lucide] {
    width: 14px;
    height: 14px;
}

/* ═══════════════ IMPORT SECTION ═══════════════ */
.admin-import-body {
    padding: 24px;
}

.import-type-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.import-type-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: var(--gray-50);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}

.import-type-card:hover:not(:disabled) {
    border-color: var(--gray-400);
}

.import-type-card.active {
    border-color: var(--text-primary);
    background: white;
}

.import-type-card:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.import-type-card [data-lucide] {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
}

.import-type-card.active [data-lucide] {
    color: var(--text-primary);
}

.import-type-card span {
    font-size: 14px;
    font-weight: 600;
}

.import-type-card small {
    font-size: 10px;
    color: var(--text-muted);
    position: absolute;
    top: 8px;
    right: 8px;
}

/* ═══════════════ IMPORT STEPS ═══════════════ */
.import-step {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.import-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.import-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--text-primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
}

.import-step-header h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.import-step p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.import-template-btns {
    display: flex;
    gap: 12px;
}

.btn-template {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-primary);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-template:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.btn-template [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

/* ═══════════════ DROPZONE ═══════════════ */
.import-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    background: white;
    cursor: pointer;
    transition: all 0.15s ease;
}

.import-dropzone:hover,
.import-dropzone.dragover {
    border-color: var(--primary);
    background: rgba(236, 72, 153, 0.05);
}

.import-dropzone [data-lucide] {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.import-dropzone p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.import-dropzone span {
    font-size: 12px;
    color: var(--text-muted);
}

.import-file-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.import-file-selected [data-lucide] {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

#fileName {
    font-weight: 500;
}

#fileSize {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: auto;
}

#removeFile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: white;
    cursor: pointer;
    margin-left: 8px;
}

#removeFile:hover {
    border-color: #ef4444;
    color: #ef4444;
}

#removeFile [data-lucide] {
    width: 14px;
    height: 14px;
}

/* ═══════════════ PREVIEW TABLE ═══════════════ */
.import-preview-table-wrap {
    max-height: 280px;
    overflow: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: white;
    margin-bottom: 20px;
}

.import-preview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.import-preview-table th {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
}

.import-preview-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-100);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.import-count {
    margin-left: auto;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.import-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-import {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: var(--primary);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
}

.btn-import:hover {
    background: #db2777;
}

.btn-import [data-lucide] {
    width: 16px;
    height: 16px;
}

/* ═══════════════ RESULT ═══════════════ */
.import-result {
    text-align: center;
    padding: 48px 24px;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
}

.import-result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.import-result-icon.success {
    background: #dcfce7;
}

.import-result-icon.success [data-lucide] {
    width: 32px;
    height: 32px;
    color: #22c55e;
}

.import-result-icon.error {
    background: #fef2f2;
}

.import-result-icon.error [data-lucide] {
    width: 32px;
    height: 32px;
    color: #ef4444;
}

.import-result h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.import-result p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .import-type-cards {
        flex-direction: column;
    }
}

/* ═══════════════ PAGINATION ═══════════════ */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}
.btn-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: white;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}
.btn-page:hover:not(:disabled) { border-color: var(--text-primary); color: var(--text-primary); }
.btn-page:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-page [data-lucide] { width: 16px; height: 16px; }
.page-info { font-size: 13px; color: var(--text-secondary); font-weight: 500; min-width: 180px; text-align: center; }

/* ═══════════════ FILTER TOOLBAR ═══════════════ */
.admin-panel-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.admin-filter-select {
    padding: 10px 14px; font-size: 13px; font-family: inherit;
    border: 1px solid var(--border-color); border-radius: var(--border-radius-md);
    background: var(--gray-50); color: var(--text-secondary); outline: none; cursor: pointer; min-width: 140px;
}
.admin-filter-select:focus { border-color: var(--text-primary); background: white; }

/* ═══════════════ TOTAL BADGE ═══════════════ */
.admin-total-badge { font-size: 13px; font-weight: 600; color: var(--text-muted); background: var(--gray-100); padding: 3px 10px; border-radius: 12px; margin-left: 8px; }

/* ═══════════════ HEADER ACTIONS ═══════════════ */
.admin-header-actions { display: flex; align-items: center; gap: 10px; }
.btn-admin-secondary {
    display: flex; align-items: center; gap: 6px; padding: 10px 18px;
    font-size: 14px; font-weight: 500; font-family: inherit;
    color: var(--text-secondary); background: white; border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md); cursor: pointer; text-decoration: none; transition: all 0.15s ease;
}
.btn-admin-secondary:hover { border-color: var(--text-primary); color: var(--text-primary); }
.btn-admin-secondary [data-lucide] { width: 16px; height: 16px; }

/* ═══════════════ SORTABLE HEADERS ═══════════════ */
.admin-data-table th.sortable { cursor: pointer; user-select: none; }
.admin-data-table th.sortable:hover { color: var(--text-primary); }
.admin-data-table th.sortable [data-lucide] { width: 12px; height: 12px; opacity: 0.3; vertical-align: middle; margin-left: 4px; }
.admin-data-table th.sortable:hover [data-lucide] { opacity: 0.7; }

/* ═══════════════ CATEGORY BADGE ═══════════════ */
.badge-cat { display: inline-block; padding: 2px 8px; font-size: 11px; font-weight: 600; border-radius: 10px; background: var(--gray-100); color: var(--text-secondary); }

/* ═══════════════ DATE + COORDS ═══════════════ */
.cell-date { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.coords-missing { color: #f59e0b; font-style: italic; }
.geocode-link { color: #FF385C; text-decoration: none; font-weight: 500; font-style: normal; cursor: pointer; font-size: 12px; }
.geocode-link:hover { text-decoration: underline; }

/* ═══════════════ CHECKBOX COLUMN ═══════════════ */
.col-check { width: 40px; text-align: center; }
.col-check input, .poi-check { width: 16px; height: 16px; cursor: pointer; accent-color: #FF385C; }
.row-selected { background: #fff5f7; }
.row-selected td { background: #fff5f7; }

/* ═══════════════ BULK BAR ═══════════════ */
.bulk-bar {
    display: flex; align-items: center; gap: 12px; padding: 12px 24px;
    background: #1a1a1a; color: white; border-radius: 12px;
    margin: 16px 24px 0; flex-wrap: wrap;
}
.bulk-count { font-size: 13px; font-weight: 600; min-width: 120px; }
.bulk-bar .admin-filter-select {
    background: #2a2a2a; border-color: #444; color: white; font-size: 12px; min-width: 160px; padding: 8px 12px;
}
.btn-bulk {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; font-size: 12px; font-weight: 600; font-family: inherit;
    color: white; background: #333; border: 1px solid #555;
    border-radius: var(--border-radius-md); cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.btn-bulk:hover { background: #444; border-color: #777; }
.btn-bulk:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-bulk [data-lucide] { width: 14px; height: 14px; }
.btn-bulk-danger:hover { background: #dc2626; border-color: #dc2626; }
.bulk-divider { width: 1px; height: 24px; background: #444; flex-shrink: 0; }
.bulk-select {
    padding: 8px 12px; font-size: 12px; font-family: inherit;
    background: #2a2a2a; border: 1px solid #444; color: white;
    border-radius: var(--border-radius-md); cursor: pointer; min-width: 140px; max-width: 180px;
}
.bulk-select:focus { border-color: #FF385C; }

/* ═══════════════ DYNAMIC PAGINATION ═══════════════ */
.admin-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 16px 24px; border-top: 1px solid var(--border-color); flex-wrap: wrap;
}
.btn-page-num {
    display: flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 8px;
    border: 1px solid var(--border-color); border-radius: var(--border-radius-md);
    background: white; color: var(--text-secondary); font-size: 13px; font-weight: 500; font-family: inherit;
    cursor: pointer; transition: all 0.15s;
}
.btn-page-num:hover { border-color: var(--text-primary); color: var(--text-primary); }
.btn-page-num.active { background: var(--text-primary); color: white; border-color: var(--text-primary); }
.page-dots { color: var(--text-muted); padding: 0 4px; font-size: 14px; }
.page-size-select {
    margin-left: 12px; padding: 8px 10px; font-size: 12px; font-family: inherit;
    border: 1px solid var(--border-color); border-radius: var(--border-radius-md);
    background: white; color: var(--text-secondary); cursor: pointer;
}
.page-info { font-size: 13px; color: var(--text-muted); margin-left: 8px; }
