/* AI-Header: Table component styles with theme support */
/* Date: 2025-07-13 */

/* ===========================================
   TABLES - BASE STRUCTURE
   =========================================== */

.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* ===========================================
   TABLES - LIGHT THEME
   =========================================== */

[data-bs-theme="light"] .table {
    --bs-table-bg: #ffffff;
    --bs-table-striped-bg: #f8f9fa;
    --bs-table-hover-bg: #f5f5f5;
    --bs-table-border-color: #dee2e6;
    color: #212529;
}

[data-bs-theme="light"] .table thead th {
    background: #722F37;
    color: #ffffff;
    border-bottom: 2px solid #5d252b;
}

/* ===========================================
   TABLES - DARK THEME
   =========================================== */

[data-bs-theme="dark"] .table {
    --bs-table-bg: #2a2a2a;
    --bs-table-striped-bg: #333333;
    --bs-table-hover-bg: #3a3a3a;
    --bs-table-border-color: #404040;
    color: #e9ecef;
}

[data-bs-theme="dark"] .table thead th {
    background: #4a5568;
    color: #ffffff;
    border-bottom: 2px solid #5a6578;
}
