﻿                        /* 2026 Modern Dark Table & Tabs */
                        .modern-bottom-panel {
                            background: #171717 !important;
                            border-top: 1px solid #262626;
                            box-shadow: none;
                        }
                        .modern-tab-btn {
                            background: #141414;
                            color: #a3a3a3;
                            font-size: 13px;
                            font-weight: 500;
                            padding: 8px 16px;
                            border-radius: 8px;
                            transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
                            border: 1px solid #262626;
                            cursor: pointer;
                            letter-spacing: 0;
                            text-transform: none;
                        }
                        .modern-tab-btn:hover {
                            background: #262626;
                            color: #fafafa;
                            border-color: #404040;
                        }
                        .modern-tab-btn.active {
                            background: #262626;
                            border: 1px solid #3b82f6;
                            color: #fafafa;
                            box-shadow: none;
                            transform: none;
                        }
                        .modern-table {
                            width: 100%;
                            text-align: left;
                            border-collapse: separate !important;
                            border-spacing: 0 6px !important;
                            color: #ccc;
                            font-size: 13px;
                            min-width: 800px;
                        }
                        .modern-table thead th {
                            background: rgba(255,255,255,0.02);
                            color: #888;
                            text-transform: uppercase;
                            font-size: 11px;
                            letter-spacing: 1px;
                            padding: 12px 10px;
                            border: none !important;
                            font-weight: 600;
                        }
                        .modern-table thead th:first-child { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
                        .modern-table thead th:last-child { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }

                        .modern-table tbody tr {
                            background: rgba(255,255,255,0.015);
                            transition: all 0.2s ease;
                        }
                        .modern-table tbody tr:hover {
                            background: rgba(255,255,255,0.04);
                            transform: translateY(-1px);
                            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
                        }
                        .modern-table tbody td {
                            padding: 12px 10px;
                            border-top: 1px solid rgba(255,255,255,0.03);
                            border-bottom: 1px solid rgba(255,255,255,0.03);
                        }
                        .modern-table tbody td:first-child { 
                            border-left: 1px solid rgba(255,255,255,0.03);
                            border-top-left-radius: 8px; 
                            border-bottom-left-radius: 8px; 
                        }
                        .modern-table tbody td:last-child { 
                            border-right: 1px solid rgba(255,255,255,0.03);
                            border-top-right-radius: 8px; 
                            border-bottom-right-radius: 8px; 
                        }
