/* ============================================
   CRM List UI Design System
   Notion-Inspired Minimal Theme
   ============================================ */

/* Design Tokens - Notion-Style Grayscale */
:root {
    /* Dark Surface Colors */
    --list-bg-base: #000000;
    --list-bg-light: #0e0e0e;
    --list-bg-surface: #151515;
    --list-card-bg: #151515;
    --list-card-hover: #1a1a1a;
    --list-border: #2a2a2a;
    --list-border-light: #1a1a1a;
    
    /* Text Colors - Grayscale for Dark Theme */
    --list-text-primary: #f5f5f5;
    --list-text-secondary: #cfcfcf;
    --list-text-muted: #6f6f6f;
    
    /* Spacing */
    --list-outer-spacing: 24px;
    --list-inner-spacing: 16px;
    --list-item-spacing: 12px;
    
    /* Typography */
    --list-title-size: 16px;
    --list-meta-size: 13px;
    --list-caption-size: 12px;
    
    /* Clean Shadows */
    --list-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --list-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --list-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
    --list-glow: none;
    
    /* Status Colors - For icons only */
    --status-primary: #2EAADC;
    --status-primary-light: rgba(46, 170, 220, 0.15);
    --status-success: #0F7B6C;
    --status-success-light: rgba(15, 123, 108, 0.15);
    --status-warning: #F7B731;
    --status-warning-light: rgba(247, 183, 49, 0.15);
    --status-danger: #E03E3E;
    --status-danger-light: rgba(224, 62, 62, 0.15);
    --status-info: #2EAADC;
    --status-info-light: rgba(46, 170, 220, 0.15);
    --status-muted: #6f6f6f;
    --status-muted-light: rgba(111, 111, 111, 0.15);
    
    /* Simple borders */
    --glass-blur: none;
    --glass-border: #2a2a2a;
}

/* ============================================
   List Shell - Main Container
   ============================================ */
.list-shell {
    background: var(--theme-bg-card, #151515);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--list-shadow-sm);
    border: 1px solid var(--theme-border, #2a2a2a);
    margin-bottom: var(--list-outer-spacing);
}

.list-shell-header {
    background: var(--theme-bg-elevated, #0e0e0e);
    border-bottom: 1px solid var(--theme-border, #2a2a2a);
    padding: var(--list-inner-spacing) var(--list-outer-spacing);
}

.list-shell-body {
    padding: 0;
    background: var(--theme-bg-card, #151515);
}

/* ============================================
   List Toolbar - Search & Actions
   ============================================ */
.list-toolbar {
    display: flex;
    align-items: center;
    gap: var(--list-item-spacing);
    flex-wrap: wrap;
    padding: var(--list-inner-spacing) var(--list-outer-spacing);
    background: var(--theme-bg-surface, #151515);
    border-bottom: 1px solid var(--theme-border, #2a2a2a);
}

.list-toolbar-search {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
}

.list-toolbar-search input {
    background: var(--theme-input-bg, #151515);
    border: 1px solid var(--theme-border, #2a2a2a);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--theme-text-primary, #f5f5f5);
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
}

.list-toolbar-search input::placeholder {
    color: var(--theme-text-muted, #6f6f6f);
}

.list-toolbar-search input:focus {
    border-color: var(--theme-border-hover, #3a3a3a);
    box-shadow: none;
    outline: none;
    background: var(--theme-input-bg, #151515);
}

.list-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* ============================================
   List Table - Enterprise Grade Dark Table
   ============================================ */
.list-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    font-size: 14px;
}

.list-table thead {
    background: var(--theme-bg-elevated, #0e0e0e);
    position: sticky;
    top: 0;
    z-index: 10;
}

.list-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-text-muted, #6f6f6f);
    border-bottom: 1px solid var(--theme-border, #2a2a2a);
    white-space: nowrap;
    background: transparent;
    position: relative;
}

.list-table th:first-child {
    padding-left: 24px;
}

.list-table th:last-child {
    padding-right: 24px;
}

.list-table th::after {
    display: none;
}

.list-table tbody {
    background: transparent;
}

.list-table tbody tr {
    background: var(--theme-bg-card, #151515);
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--theme-border, #2a2a2a);
    cursor: pointer;
}

.list-table tbody tr:nth-child(even) {
    background: var(--theme-bg-surface, #151515);
}

.list-table tbody tr:hover {
    background: var(--theme-bg-elevated, #1a1a1a);
}

.list-table tbody tr:hover td {
    color: var(--theme-text-primary, #f5f5f5);
}

.list-table tbody tr:last-child {
    border-bottom: none;
}

.list-table tbody tr.selected {
    background: var(--theme-bg-elevated, #1a1a1a);
}

.list-table td {
    padding: 14px 20px;
    vertical-align: middle;
    color: var(--theme-text-primary, #f5f5f5);
    background: transparent;
    transition: background 0.15s ease;
}

.list-table td:first-child {
    padding-left: 24px;
}

.list-table td:last-child {
    padding-right: 24px;
}

/* Row checkbox styling */
.list-table .row-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid rgba(148, 163, 184, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.list-table .row-checkbox:checked {
    background: #cfcfcf;
    border-color: #cfcfcf;
}

.list-table .row-checkbox:checked::after {
    content: '✓';
    display: block;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
}

.list-table .row-checkbox:hover {
    border-color: #3a3a3a;
}

/* Action cell styling */
.list-table .actions-cell {
    white-space: nowrap;
    text-align: right;
}

.list-table .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 13px;
    margin-left: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.list-table .action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3a3a3a;
    color: #f5f5f5;
    transform: translateY(-1px);
}

.list-table .action-btn:first-child {
    margin-left: 0;
}

.list-table .action-btn.action-view:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f5f5f5;
}

.list-table .action-btn.action-edit:hover {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.list-table .action-btn.action-delete:hover {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

/* Contact info styling */
.list-table .contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.list-table .contact-info a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.list-table .contact-info a:hover {
    color: #f5f5f5;
}

.list-table .contact-info a i {
    font-size: 11px;
    opacity: 0.7;
}

/* Skills/Tags cell */
.list-table .skills-cell {
    max-width: 180px;
}

.list-table .skill-tag {
    display: inline-block;
    padding: 3px 8px;
    margin: 2px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 11px;
    color: #cfcfcf;
    white-space: nowrap;
}

/* Date cell styling */
.list-table .date-cell {
    white-space: nowrap;
    font-size: 13px;
    color: #94a3b8;
}

.list-table .date-cell i {
    margin-right: 6px;
    font-size: 11px;
    opacity: 0.6;
}

/* Empty state for cells */
.list-table .empty-cell {
    color: #6f6f6f;
    font-style: italic;
    font-size: 13px;
}

/* MPC Badge inline */
.list-table .mpc-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #34d399;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sortable Headers */
.sortable-header {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--list-text-muted);
    padding: 2px 0;
    transition: all 0.2s ease;
    user-select: none;
}

.sortable-header:hover {
    color: #f5f5f5;
    text-decoration: none;
}

.sortable-header.active {
    color: #f5f5f5;
    font-weight: 700;
}

.sortable-header i {
    font-size: 10px;
    transition: all 0.2s ease;
}

.sortable-header:hover i {
    opacity: 1 !important;
}

/* ============================================
   List Item Components
   ============================================ */

/* Item Title & Meta */
.list-item-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: #1a1a1a;
    color: var(--icon-blue, #2EAADC);
    box-shadow: none;
}

.list-item-info {
    flex: 1;
    min-width: 0;
}

.list-item-name {
    font-size: var(--list-title-size);
    font-weight: 600;
    color: var(--list-text-primary);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-item-name a {
    color: var(--list-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.list-item-name a:hover {
    color: #f5f5f5;
}

.list-item-meta {
    font-size: var(--list-meta-size);
    color: var(--list-text-secondary);
    margin: 2px 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.list-item-meta i {
    font-size: 11px;
    opacity: 0.7;
    color: var(--list-text-muted);
}

/* ============================================
   Status Pills & Badges - Dark Theme
   ============================================ */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    min-width: 80px;
    justify-content: center;
    transition: all 0.2s ease;
}

.status-pill i {
    font-size: 11px;
}

.status-pill-primary {
    background: rgba(111, 111, 111, 0.15);
    color: #cfcfcf;
    border: 1px solid #2a2a2a;
}

.status-pill-success {
    background: var(--status-success-light);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pill-warning {
    background: var(--status-warning-light);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-pill-danger {
    background: var(--status-danger-light);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.status-pill-muted {
    background: var(--status-muted-light);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.status-pill-info {
    background: var(--status-info-light);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Pill Counter - Dark Theme */
.pill-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(111, 111, 111, 0.15);
    color: #cfcfcf;
    border: 1px solid #2a2a2a;
}

.pill-counter-success {
    background: var(--status-success-light);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

.pill-counter-muted {
    background: var(--status-muted-light);
    color: #94a3b8;
    border-color: rgba(100, 116, 139, 0.3);
}

.pill-counter-warning {
    background: var(--status-warning-light);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.pill-counter-danger {
    background: var(--status-danger-light);
    color: #fb7185;
    border-color: rgba(244, 63, 94, 0.3);
}

/* ============================================
   Action Buttons - Premium Dark Style
   ============================================ */
.list-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.list-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--list-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--list-text-secondary);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.list-action-btn:hover {
    background: #1a1a1a;
    border-color: #3a3a3a;
    color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: none;
}

.list-action-btn-primary {
    background: #1a1a1a;
    border-color: #3a3a3a;
    color: #f5f5f5;
}

.list-action-btn-primary:hover {
    background: #2a2a2a;
    box-shadow: none;
}

.list-action-btn-danger {
    background: transparent;
    border-color: var(--list-border);
    color: var(--list-text-secondary);
}

.list-action-btn-danger:hover {
    background: linear-gradient(135deg, var(--status-danger) 0%, #e11d48 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.list-action-btn-icon {
    padding: 8px;
    min-width: 36px;
    justify-content: center;
}

/* ============================================
   Progress Indicators - Dark Theme
   ============================================ */
.list-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-progress-bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--list-border-light);
}

.list-progress-bar {
    height: 100%;
    background: #6f6f6f;
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: none;
}

.list-progress-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--list-text-secondary);
    min-width: 45px;
    text-align: right;
}

/* ============================================
   Empty States - Dark Theme
   ============================================ */
.list-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--list-border);
    border-radius: 16px;
    margin: var(--list-outer-spacing);
}

.list-empty-state-icon {
    font-size: 64px;
    color: var(--icon-blue, #2EAADC);
    margin-bottom: 20px;
    opacity: 0.5;
}

.list-empty-state-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--list-text-primary);
    margin-bottom: 8px;
}

.list-empty-state-text {
    font-size: 14px;
    color: var(--list-text-muted);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Form Controls - Dark Theme Override
   ============================================ */
.list-shell input,
.list-shell select,
.list-shell textarea,
.list-toolbar input,
.list-toolbar select {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--list-border) !important;
    color: var(--list-text-primary) !important;
    border-radius: 10px;
}

.list-shell input:focus,
.list-shell select:focus,
.list-shell textarea:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--status-primary) !important;
    box-shadow: 0 0 0 3px var(--status-primary-light) !important;
}

.list-shell input::placeholder,
.list-toolbar input::placeholder {
    color: var(--list-text-muted) !important;
}

/* Input Group */
.input-group-text {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--list-border) !important;
    color: var(--list-text-muted) !important;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .list-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .list-toolbar-search {
        max-width: 100%;
    }
    
    .list-toolbar-actions {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }
    
    .list-table th,
    .list-table td {
        padding: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --list-outer-spacing: 16px;
        --list-inner-spacing: 12px;
    }
    
    .list-shell {
        border-radius: 16px;
    }
    
    .list-shell-header,
    .list-toolbar {
        padding: 12px 16px;
    }
    
    .list-table thead {
        display: none;
    }
    
    .list-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border-radius: 12px;
        border: 1px solid var(--list-border);
        background: rgba(255, 255, 255, 0.02);
    }
    
    .list-table td {
        display: block;
        padding: 8px 12px;
        border: none;
    }
    
    .list-table td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--list-text-muted);
        display: block;
        margin-bottom: 4px;
    }
    
    .list-actions {
        justify-content: flex-start;
        padding-top: 8px;
        border-top: 1px solid var(--list-border-light);
        margin-top: 8px;
    }
    
    .list-action-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.list-badge-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.list-text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-divider {
    height: 1px;
    background: var(--list-border-light);
    margin: var(--list-item-spacing) 0;
}

/* Text color overrides for dark theme */
.text-primary {
    color: var(--list-text-primary) !important;
}

.text-secondary {
    color: var(--list-text-secondary) !important;
}

.text-muted {
    color: var(--list-text-muted) !important;
}

/* Links in dark theme */
.list-shell a:not(.btn):not(.list-action-btn) {
    color: #cfcfcf;
}

.list-shell a:not(.btn):not(.list-action-btn):hover {
    color: #f5f5f5;
}

/* ============================================
   LIGHT THEME OVERRIDES - Notion Style
   ============================================ */

/* Light Theme Design Tokens Override */
    /* Light Surface Colors - Pure White/Gray */
    --list-bg-base: #ffffff;
    --list-bg-light: #fafafa;
    --list-bg-surface: #f7f7f7;
    --list-card-bg: #fbfbfb;
    --list-card-hover: #f5f5f5;
    --list-border: #e5e5e5;
    --list-border-light: #ebebeb;
    
    /* Text Colors - Black/Gray for Light Theme */
    --list-text-primary: #111111;
    --list-text-secondary: #2b2b2b;
    --list-text-muted: #6f6f6f;
    
    /* Clean Shadows for Light Theme */
    --list-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --list-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --list-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --list-glow: none;
    
    /* Simple borders */
    --glass-border: #e5e5e5;
}

/* Light Theme List Shell */
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}

    background: #fafafa !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

/* Light Theme List Toolbar */
    background: #fafafa !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    color: #111111 !important;
}

    color: #9a9a9a !important;
}

    border-color: #cfcfcf !important;
    background: #ffffff !important;
}

/* Light Theme Table */
    background: #fafafa !important;
}

    color: #6f6f6f !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

    color: #111111 !important;
    border-bottom: 1px solid #ebebeb !important;
}

    background: #ffffff !important;
}

    background: #fafafa !important;
}

    background: #f5f5f5 !important;
}

/* Light Theme Text Colors */
    color: #111111 !important;
}

    color: #2b2b2b !important;
}

    color: #6f6f6f !important;
}

/* Light Theme Action Buttons */
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    color: #2b2b2b !important;
}

    background: #f0f0f0 !important;
    border-color: #cfcfcf !important;
    color: #111111 !important;
}

/* Light Theme Links */
    color: #2b2b2b !important;
}

    color: #111111 !important;
}

/* Light Theme Text Overrides */
    color: #111111 !important;
}

    color: #2b2b2b !important;
}

    color: #6f6f6f !important;
}

/* Light Theme Cards within lists */
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #e5e5e5 !important;
}

    background: rgba(255, 255, 255, 1) !important;
    border-color: #cfcfcf !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* Light Theme Empty State */
    color: #6f6f6f !important;
}

    color: #94a3b8 !important;
}

/* Light Theme Badges */
    background: #f0f0f0 !important;
    color: #2b2b2b !important;
}

/* ============================================
   Enterprise Bulk Actions Bar
   ============================================ */
.bulk-actions-bar {
    display: none;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: #0e0e0e;
    border-bottom: 1px solid #2a2a2a;
    animation: slideDown 0.3s ease;
}

.bulk-actions-bar.active {
    display: flex;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bulk-actions-bar .selection-count {
    font-size: 14px;
    font-weight: 600;
    color: #f5f5f5;
}

.bulk-actions-bar .bulk-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bulk-actions-bar .bulk-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.bulk-actions-bar .bulk-btn.bulk-delete:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.3);
    color: #fb7185;
}

/* ============================================
   Premium Table Footer / Pagination
   ============================================ */
.list-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.list-table-footer .results-info {
    font-size: 13px;
    color: #6f6f6f;
}

.list-table-footer .results-info strong {
    color: #94a3b8;
}

/* ============================================
   Light Theme Table Overrides
   ============================================ */
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.95) 100%);
}

    color: #6f6f6f;
    border-bottom-color: #e5e5e5;
}

    border-bottom-color: rgba(0, 0, 0, 0.05);
}

    background: #fafafa;
}

    background: #f5f5f5;
    box-shadow: none;
}

    color: #111111;
}

    color: #111111;
}

    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #6f6f6f;
}

    background: #f0f0f0;
    border-color: #cfcfcf;
    color: #111111;
}

    color: #2b2b2b;
}

    color: #6f6f6f;
}

    color: #94a3b8;
}

    background: #f0f0f0;
    border-color: #e5e5e5;
    color: #2b2b2b;
}

    background: #fafafa;
    border-bottom-color: #e5e5e5;
}

    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #6f6f6f;
}

    background: rgba(248, 250, 252, 0.9);
    border-top-color: rgba(0, 0, 0, 0.05);
}

    color: #6f6f6f;
}

    color: #111111;
}
