* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #1a1508;
    color: #e0e0e0;
    direction: rtl;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 200px;
    height: 100vh;
    background: #1e1a0c;
    border-left: 1px solid #302818;
    padding: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 15px;
    text-align: center;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    border-bottom: 1px solid #251e10;
}

.sidebar-header h1 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.sidebar-header small {
    color: #90caf9;
    font-size: 11px;
}

.nav-menu { flex: 1; padding: 10px 0; overflow-y: auto; }

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border-right: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.nav-item.active {
    background: rgba(26, 35, 126, 0.3);
    color: #42a5f5;
    border-right-color: #42a5f5;
}

.nav-item .icon { font-size: 18px; width: 24px; text-align: center; }

/* Main content */
.main-content {
    margin-right: 200px;
    padding: 15px 20px;
    min-height: 100vh;
}

.page-header {
    margin-bottom: 25px;
}

.page-header h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 3px;
}

.page-header p {
    color: #78909c;
    font-size: 13px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: #221c10;
    border: 1px solid #2d2418;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.stat-card .stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-card .stat-label {
    font-size: 12px;
    color: #78909c;
    font-weight: 600;
}

.stat-card.blue { border-top: 3px solid #1565c0; }
.stat-card.blue .stat-value { color: #42a5f5; }

.stat-card.green { border-top: 3px solid #2e7d32; }
.stat-card.green .stat-value { color: #66bb6a; }

.stat-card.red { border-top: 3px solid #c62828; }
.stat-card.red .stat-value { color: #ef5350; }

.stat-card.orange { border-top: 3px solid #e65100; }
.stat-card.orange .stat-value { color: #ff9800; }

.stat-card.teal { border-top: 3px solid #00695c; }
.stat-card.teal .stat-value { color: #26a69a; }

.stat-card.purple { border-top: 3px solid #6a1b9a; }
.stat-card.purple .stat-value { color: #ab47bc; }

/* Cards */
.card {
    background: #221c10;
    border: 1px solid #2d2418;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-header h3 {
    font-size: 15px;
    color: #fff;
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
    font-size: 12px;
    color: #90a4ae;
    font-weight: 600;
}

.form-group input, .form-group select {
    background: #252014;
    border: 1px solid #352e1a;
    border-radius: 6px;
    padding: 8px 10px;
    color: #e0e0e0;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #42a5f5;
    box-shadow: 0 0 0 2px rgba(66,165,245,0.15);
}

.form-group select { cursor: pointer; }
.form-group select option { background: #252014; color: #e0e0e0; }

/* Buttons */
.btn {
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-primary { background: #1565c0; color: #fff; }
.btn-primary:hover { background: #1976d2; }

.btn-success { background: #2e7d32; color: #fff; }
.btn-success:hover { background: #388e3c; }

.btn-danger { background: #c62828; color: #fff; }
.btn-danger:hover { background: #d32f2f; }

.btn-warning { background: #e65100; color: #fff; }
.btn-warning:hover { background: #ef6c00; }

.btn-sm { padding: 5px 10px; font-size: 12px; }

/* Table - Excel Style */
.table-container {
    overflow-x: auto;
    border-radius: 0;
    border: 1px solid #3a3020;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

th {
    background: #1a237e;
    color: #fff;
    padding: 10px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid #3a3020;
}

td {
    padding: 8px 8px;
    text-align: center;
    border: 1px solid #3a3020;
    font-size: 13px;
    color: #e0e0e0;
    background: #221c10;
}

tr:hover td { background: rgba(66,165,245,0.08); }

tr:nth-child(even) td { background: #1e1a10; }
tr:nth-child(even):hover td { background: rgba(66,165,245,0.08); }

tr.row-banned td {
    background: rgba(255, 205, 210, 0.12) !important;
    color: #ef5350 !important;
    font-weight: 600;
}

tr.row-unbanned td {
    background: rgba(255,255,255,0.05) !important;
    color: #e0e0e0 !important;
    font-weight: 600;
}

tr.row-transferred td {
    background: rgba(100, 181, 246, 0.12) !important;
    color: #64b5f6 !important;
    font-weight: 600;
}

tr.row-waiting td {
    background: rgba(255, 243, 224, 0.12) !important;
    color: #ffcc80 !important;
    font-weight: 600;
}

/* Badges */
.badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-banned { background: rgba(198,40,40,0.2); color: #ef5350; }
.badge-transferred { background: rgba(46,125,50,0.2); color: #66bb6a; }
.badge-waiting { background: rgba(230,81,0,0.2); color: #ff9800; }
.badge-active { background: rgba(21,101,192,0.2); color: #42a5f5; }
.badge-companies { background: rgba(106,27,154,0.2); color: #ab47bc; }
.badge-banks { background: rgba(0,105,92,0.2); color: #26a69a; }
.badge-individuals { background: rgba(230,81,0,0.2); color: #ff9800; }

/* Tabs */
.tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab {
    padding: 8px 16px;
    background: #252014;
    border: 1px solid #352e1a;
    border-radius: 8px;
    color: #90a4ae;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    font-family: inherit;
}

.tab:hover { background: #302a1a; color: #fff; }
.tab.active { background: #1565c0; color: #fff; border-color: #1565c0; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 50px;
    color: #546e7a;
    font-size: 16px;
}

.empty-state .icon { font-size: 48px; margin-bottom: 10px; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show { display: flex; }

.modal {
    background: #252014;
    border: 1px solid #352e1a;
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 { color: #fff; }

.modal-close {
    background: none;
    border: none;
    color: #78909c;
    font-size: 24px;
    cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #1a1508; }
::-webkit-scrollbar-thumb { background: #352e1a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #5a4a28; }

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #2e7d32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 300;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #c62828; }

/* Responsive */
@media (max-width: 768px) {
    .sidebar { width: 50px; }
    .sidebar-header h1, .sidebar-header small, .nav-item span { display: none; }
    .nav-item { justify-content: center; padding: 12px; }
    .main-content { margin-right: 50px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Checkbox */
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: #42a5f5;
}

/* Toolbar */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #1e1a0c;
    border: 1px solid #2d2418;
    border-radius: 6px;
}

.toolbar-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.toolbar-separator {
    width: 1px;
    height: 25px;
    background: #352e1a;
    margin: 0 5px;
}

.selected-count {
    background: #1565c0;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: none;
}

.selected-count.show { display: inline-block; }

/* Import/Export Modal */
.import-area {
    border: 2px dashed #352e1a;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.import-area:hover {
    border-color: #42a5f5;
    background: rgba(66,165,245,0.05);
}

.import-area.dragover {
    border-color: #42a5f5;
    background: rgba(66,165,245,0.1);
}

.import-area .icon { font-size: 48px; margin-bottom: 10px; color: #546e7a; }
.import-area p { color: #78909c; font-size: 13px; }

.import-result {
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 13px;
}

.import-result.success { background: rgba(46,125,50,0.15); color: #66bb6a; border: 1px solid rgba(46,125,50,0.3); }
.import-result.error { background: rgba(198,40,40,0.15); color: #ef5350; border: 1px solid rgba(198,40,40,0.3); }

/* Hidden file input */
#importFileInput { display: none; }

/* Row selected highlight */
tr.row-selected { background: rgba(66,165,245,0.15) !important; }
tr.row-selected td { color: #90caf9 !important; }

/* Violation thumbnails */
.thumb-img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; border: 2px solid #42a5f5; cursor: pointer; transition: transform 0.2s; background:#252014; }
.thumb-img:hover { transform: scale(2); z-index: 10; position: relative; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.thumb-pdf { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: #ff7043; color: #fff; border-radius: 6px; font-size: 9px; font-weight: bold; text-decoration: none; border: 2px solid #42a5f5; transition: transform 0.2s; }
.thumb-pdf:hover { transform: scale(1.5); box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.no-attachments { color: #546e7a; font-size: 11px; }

/* Form image cell - compact */
td:has(.thumb-img), td:has(.thumb-pdf) {
    max-width: 60px;
}

/* Excel Orange-Blue Theme - Operations Page */
body.excel-green {
    background: #dce4f5;
    color: #333;
}

body.excel-green .sidebar {
    background: #c75b2a;
    border-left-color: #a04a20;
}

body.excel-green .sidebar-header {
    background: linear-gradient(135deg, #c75b2a, #a04a20);
    border-bottom-color: #a04a20;
}

body.excel-green .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-green .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-right-color: #fff;
}

body.excel-green .page-header h2 { color: #7a3510; }
body.excel-green .page-header p { color: #a05a30; }

body.excel-green .stat-card {
    background: #fff;
    border-color: #f0c8a8;
}
body.excel-green .stat-card .stat-label { color: #a05a30; }

body.excel-green .card {
    background: #fff;
    border-color: #f0c8a8;
}

body.excel-green .card-header h3 { color: #7a3510; }

body.excel-green .form-group label { color: #7a3510; }

body.excel-green .form-group input,
body.excel-green .form-group select {
    background: #fff;
    border-color: #d4a080;
    color: #333;
}

body.excel-green .form-group select option { background: #fff; color: #333; }

body.excel-green .toolbar {
    background: #f0dde8;
    border-color: #f0c8a8;
}

body.excel-green .toolbar-separator { background: #d4a080; }

body.excel-green .table-container {
    border-color: #d4793a;
}

body.excel-green th {
    background: #d4793a;
    color: #fff;
    border-color: #c06828;
}

body.excel-green td {
    background: #eaf0f8;
    color: #333;
    border-color: #b0c4de;
}

body.excel-green tr:nth-child(even) td { background: #d0dff0; }

body.excel-green tr:hover td { background: #c0d4e8 !important; }

body.excel-green tr.row-banned td {
    background: rgba(211,47,47,0.1) !important;
    color: #c62828 !important;
    font-weight: 600;
}

body.excel-green tr.row-unbanned td {
    background: rgba(0,0,0,0.03) !important;
    color: #222 !important;
    font-weight: 600;
}

body.excel-green tr.row-transferred td {
    background: rgba(21,101,192,0.1) !important;
    color: #1565c0 !important;
    font-weight: 600;
}

body.excel-green tr.row-waiting td {
    background: rgba(230,81,0,0.08) !important;
    color: #e65100 !important;
    font-weight: 600;
}

body.excel-green .badge {
    border-color: rgba(0,0,0,0.1);
}

body.excel-green .badge-banned { background: rgba(211,47,47,0.12); color: #c62828; }
body.excel-green .badge-transferred { background: rgba(46,125,50,0.12); color: #2e7d32; }
body.excel-green .badge-waiting { background: rgba(230,81,0,0.12); color: #e65100; }
body.excel-green .badge-active { background: rgba(21,101,192,0.12); color: #1565c0; }
body.excel-green .badge-companies { background: rgba(106,27,154,0.12); color: #6a1b9a; }
body.excel-green .badge-banks { background: rgba(0,105,92,0.12); color: #00695c; }
body.excel-green .badge-individuals { background: rgba(230,81,0,0.12); color: #e65100; }

body.excel-green .empty-state { color: #a05a30; }

body.excel-green input[type="text"],
body.excel-green input[type="date"] {
    background: #fff;
    border-color: #d4a080;
    color: #333;
}

body.excel-green .btn-primary { background: #d4793a; }
body.excel-green .btn-primary:hover { background: #e08840; }
body.excel-green .btn-success { background: #2e7d32; }
body.excel-green .btn-success:hover { background: #388e3c; }
body.excel-green .btn-danger { background: #c62828; }
body.excel-green .btn-danger:hover { background: #d32f2f; }

body.excel-green .selected-count { background: #d4793a; }

body.excel-green .tab {
    background: #f0dde8;
    border-color: #f0c8a8;
    color: #7a3510;
}
body.excel-green .tab:hover { background: #f0c8a8; color: #5a2508; }
body.excel-green .tab.active { background: #d4793a; color: #fff; border-color: #d4793a; }

body.excel-green .modal {
    background: #fff;
    border-color: #f0c8a8;
}
body.excel-green .modal-header h3 { color: #7a3510; }
body.excel-green .modal-close { color: #a05a30; }

body.excel-green .thumb-img { border-color: #d4793a; background: #fff5ed; }
body.excel-green .thumb-pdf { border-color: #d4793a; }

body.excel-green .import-area { border-color: #d4a080; }
body.excel-green .import-area p { color: #a05a30; }

body.excel-green .import-result.success { background: rgba(46,125,50,0.1); color: #2e7d32; border-color: rgba(46,125,50,0.3); }
body.excel-green .import-result.error { background: rgba(211,47,47,0.1); color: #c62828; border-color: rgba(211,47,47,0.3); }

body.excel-green ::-webkit-scrollbar-track { background: #f0dde8; }
body.excel-green ::-webkit-scrollbar-thumb { background: #d4a080; }
body.excel-green ::-webkit-scrollbar-thumb:hover { background: #c06828; }

/* Excel Gray Theme - Dashboard */
body.excel-gray {
    background: #f2f2f2;
    color: #333;
}

body.excel-gray .sidebar {
    background: #3b3b3b;
    border-left-color: #505050;
}

body.excel-gray .sidebar-header {
    background: linear-gradient(135deg, #3b3b3b, #2a2a2a);
    border-bottom-color: #505050;
}

body.excel-gray .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-gray .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #ccc;
    border-right-color: #999;
}

body.excel-gray .page-header h2 { color: #222; }
body.excel-gray .page-header p { color: #666; }

body.excel-gray .stat-card {
    background: #fff;
    border-color: #d9d9d9;
}
body.excel-gray .stat-card .stat-label { color: #666; }

body.excel-gray .card {
    background: #fff;
    border-color: #d9d9d9;
}

body.excel-gray .card-header h3 { color: #333; }

body.excel-gray .toolbar {
    background: #e8e8e8;
    border-color: #d9d9d9;
}

body.excel-gray .toolbar-separator { background: #bbb; }

body.excel-gray .table-container {
    border-color: #bbb;
}

body.excel-gray th {
    background: #5b5b5b;
    color: #fff;
    border-color: #999;
}

body.excel-gray td {
    background: #fff;
    color: #333;
    border-color: #d9d9d9;
}

body.excel-gray tr:nth-child(even) td { background: #f2f2f2; }

body.excel-gray tr:hover td { background: #e8e8e8 !important; }

body.excel-gray tr.row-banned td {
    background: rgba(211,47,47,0.08) !important;
    color: #c62828 !important;
    font-weight: 600;
}

body.excel-gray tr.row-unbanned td {
    background: rgba(0,0,0,0.03) !important;
    color: #222 !important;
    font-weight: 600;
}

body.excel-gray tr.row-transferred td {
    background: rgba(21,101,192,0.08) !important;
    color: #1565c0 !important;
    font-weight: 600;
}

body.excel-gray tr.row-waiting td {
    background: rgba(230,81,0,0.08) !important;
    color: #e65100 !important;
    font-weight: 600;
}

body.excel-gray .badge {
    border-color: rgba(0,0,0,0.1);
}

body.excel-gray .badge-banned { background: rgba(211,47,47,0.12); color: #c62828; }
body.excel-gray .badge-transferred { background: rgba(46,125,50,0.12); color: #2e7d32; }
body.excel-gray .badge-waiting { background: rgba(230,81,0,0.12); color: #e65100; }
body.excel-gray .badge-active { background: rgba(21,101,192,0.12); color: #1565c0; }
body.excel-gray .badge-companies { background: rgba(106,27,154,0.12); color: #6a1b9a; }
body.excel-gray .badge-banks { background: rgba(0,105,92,0.12); color: #00695c; }
body.excel-gray .badge-individuals { background: rgba(230,81,0,0.12); color: #e65100; }

body.excel-gray .empty-state { color: #999; }

body.excel-gray input[type="text"],
body.excel-gray input[type="date"] {
    background: #fff;
    border-color: #bbb;
    color: #333;
}

body.excel-gray .btn-primary { background: #5b5b5b; }
body.excel-gray .btn-primary:hover { background: #6b6b6b; }
body.excel-gray .btn-success { background: #2e7d32; }
body.excel-gray .btn-success:hover { background: #388e3c; }
body.excel-gray .btn-danger { background: #c62828; }
body.excel-gray .btn-danger:hover { background: #d32f2f; }

body.excel-gray .selected-count { background: #5b5b5b; }

body.excel-gray .tab {
    background: #e8e8e8;
    border-color: #d9d9d9;
    color: #555;
}
body.excel-gray .tab:hover { background: #ddd; color: #222; }
body.excel-gray .tab.active { background: #5b5b5b; color: #fff; border-color: #5b5b5b; }

body.excel-gray .modal {
    background: #fff;
    border-color: #d9d9d9;
}
body.excel-gray .modal-header h3 { color: #333; }
body.excel-gray .modal-close { color: #888; }

body.excel-gray .thumb-img { border-color: #5b5b5b; background: #f5f5f5; }
body.excel-gray .thumb-pdf { border-color: #5b5b5b; }

body.excel-gray .import-area { border-color: #bbb; }
body.excel-gray .import-area p { color: #888; }

body.excel-gray .import-result.success { background: rgba(46,125,50,0.1); color: #2e7d32; border-color: rgba(46,125,50,0.3); }
body.excel-gray .import-result.error { background: rgba(211,47,47,0.1); color: #c62828; border-color: rgba(211,47,47,0.3); }

body.excel-gray ::-webkit-scrollbar-track { background: #e8e8e8; }
body.excel-gray ::-webkit-scrollbar-thumb { background: #bbb; }
body.excel-gray ::-webkit-scrollbar-thumb:hover { background: #999; }

/* Excel Orange Theme - Banned Page */
body.excel-orange {
    background: #fdf0e6;
    color: #333;
}

body.excel-orange .sidebar {
    background: #c75b2a;
    border-left-color: #a04a20;
}

body.excel-orange .sidebar-header {
    background: linear-gradient(135deg, #c75b2a, #a04a20);
    border-bottom-color: #a04a20;
}

body.excel-orange .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-orange .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-right-color: #fff;
}

body.excel-orange .page-header h2 { color: #7a3510; }
body.excel-orange .page-header p { color: #a05a30; }

body.excel-orange .stat-card {
    background: #fff;
    border-color: #f0c8a8;
}
body.excel-orange .stat-card .stat-label { color: #a05a30; }

body.excel-orange .card {
    background: #fff;
    border-color: #f0c8a8;
}

body.excel-orange .card-header h3 { color: #7a3510; }

body.excel-orange .toolbar {
    background: #f8e0cc;
    border-color: #f0c8a8;
}

body.excel-orange .toolbar-separator { background: #d4a080; }

body.excel-orange .table-container {
    border-color: #d4a080;
}

body.excel-orange th {
    background: #d4793a;
    color: #fff;
    border-color: #c06828;
}

body.excel-orange td {
    background: #fff5ed;
    color: #333;
    border-color: #f0c8a8;
}

body.excel-orange tr:nth-child(even) td { background: #fde8d4; }

body.excel-orange tr:hover td { background: #f5d0b0 !important; }

body.excel-orange tr.row-banned td {
    background: rgba(211,47,47,0.1) !important;
    color: #c62828 !important;
    font-weight: 600;
}

body.excel-orange tr.row-unbanned td {
    background: rgba(0,0,0,0.03) !important;
    color: #222 !important;
    font-weight: 600;
}

body.excel-orange tr.row-transferred td {
    background: rgba(21,101,192,0.08) !important;
    color: #1565c0 !important;
    font-weight: 600;
}

body.excel-orange tr.row-waiting td {
    background: rgba(230,81,0,0.08) !important;
    color: #e65100 !important;
    font-weight: 600;
}

body.excel-orange .badge {
    border-color: rgba(0,0,0,0.1);
}

body.excel-orange .badge-banned { background: rgba(211,47,47,0.12); color: #c62828; }
body.excel-orange .badge-transferred { background: rgba(46,125,50,0.12); color: #2e7d32; }
body.excel-orange .badge-waiting { background: rgba(230,81,0,0.12); color: #e65100; }
body.excel-orange .badge-active { background: rgba(21,101,192,0.12); color: #1565c0; }
body.excel-orange .badge-companies { background: rgba(106,27,154,0.12); color: #6a1b9a; }
body.excel-orange .badge-banks { background: rgba(0,105,92,0.12); color: #00695c; }
body.excel-orange .badge-individuals { background: rgba(230,81,0,0.12); color: #e65100; }

body.excel-orange .empty-state { color: #a05a30; }

body.excel-orange input[type="text"],
body.excel-orange input[type="date"] {
    background: #fff;
    border-color: #d4a080;
    color: #333;
}

body.excel-orange .btn-primary { background: #d4793a; }
body.excel-orange .btn-primary:hover { background: #e08840; }
body.excel-orange .btn-success { background: #2e7d32; }
body.excel-orange .btn-success:hover { background: #388e3c; }
body.excel-orange .btn-danger { background: #c62828; }
body.excel-orange .btn-danger:hover { background: #d32f2f; }

body.excel-orange .selected-count { background: #d4793a; }

body.excel-orange .tab {
    background: #f8e0cc;
    border-color: #f0c8a8;
    color: #7a3510;
}
body.excel-orange .tab:hover { background: #f0c8a8; color: #5a2508; }
body.excel-orange .tab.active { background: #d4793a; color: #fff; border-color: #d4793a; }

body.excel-orange .modal {
    background: #fff;
    border-color: #f0c8a8;
}
body.excel-orange .modal-header h3 { color: #7a3510; }
body.excel-orange .modal-close { color: #a05a30; }

body.excel-orange .thumb-img { border-color: #d4793a; background: #fff5ed; }
body.excel-orange .thumb-pdf { border-color: #d4793a; }

body.excel-orange .import-area { border-color: #d4a080; }
body.excel-orange .import-area p { color: #a05a30; }

body.excel-orange .import-result.success { background: rgba(46,125,50,0.1); color: #2e7d32; border-color: rgba(46,125,50,0.3); }
body.excel-orange .import-result.error { background: rgba(211,47,47,0.1); color: #c62828; border-color: rgba(211,47,47,0.3); }

body.excel-orange ::-webkit-scrollbar-track { background: #f8e0cc; }
body.excel-orange ::-webkit-scrollbar-thumb { background: #d4a080; }
body.excel-orange ::-webkit-scrollbar-thumb:hover { background: #c06828; }

/* Excel Blue Theme - Unbanned Page */
body.excel-blue {
    background: #dce8f5;
    color: #333;
}

body.excel-blue .sidebar {
    background: #5b8db8;
    border-left-color: #4a7aa3;
}

body.excel-blue .sidebar-header {
    background: linear-gradient(135deg, #5b8db8, #4a7aa3);
    border-bottom-color: #4a7aa3;
}

body.excel-blue .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-blue .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-right-color: #fff;
}

body.excel-blue .page-header h2 { color: #2c5a80; }
body.excel-blue .page-header p { color: #4a7aa3; }

body.excel-blue .stat-card {
    background: #fff;
    border-color: #a8c8e8;
}
body.excel-blue .stat-card .stat-label { color: #4a7aa3; }

body.excel-blue .card {
    background: #fff;
    border-color: #a8c8e8;
}

body.excel-blue .card-header h3 { color: #2c5a80; }

body.excel-blue .toolbar {
    background: #c8ddf0;
    border-color: #a8c8e8;
}

body.excel-blue .toolbar-separator { background: #8ab4d8; }

body.excel-blue .table-container {
    border-color: #8ab4d8;
}

body.excel-blue th {
    background: #7aadd4;
    color: #fff;
    border-color: #6a9dc4;
}

body.excel-blue td {
    background: #e8f0f8;
    color: #333;
    border-color: #a8c8e8;
}

body.excel-blue tr:nth-child(even) td { background: #d0e0f0; }

body.excel-blue tr:hover td { background: #b8d4e8 !important; }

body.excel-blue tr.row-banned td {
    background: rgba(211,47,47,0.1) !important;
    color: #c62828 !important;
    font-weight: 600;
}

body.excel-blue tr.row-unbanned td {
    background: rgba(0,0,0,0.03) !important;
    color: #222 !important;
    font-weight: 600;
}

body.excel-blue tr.row-transferred td {
    background: rgba(21,101,192,0.1) !important;
    color: #1565c0 !important;
    font-weight: 600;
}

body.excel-blue tr.row-waiting td {
    background: rgba(230,81,0,0.08) !important;
    color: #e65100 !important;
    font-weight: 600;
}

body.excel-blue .badge {
    border-color: rgba(0,0,0,0.1);
}

body.excel-blue .badge-banned { background: rgba(211,47,47,0.12); color: #c62828; }
body.excel-blue .badge-transferred { background: rgba(46,125,50,0.12); color: #2e7d32; }
body.excel-blue .badge-waiting { background: rgba(230,81,0,0.12); color: #e65100; }
body.excel-blue .badge-active { background: rgba(21,101,192,0.12); color: #1565c0; }
body.excel-blue .badge-companies { background: rgba(106,27,154,0.12); color: #6a1b9a; }
body.excel-blue .badge-banks { background: rgba(0,105,92,0.12); color: #00695c; }
body.excel-blue .badge-individuals { background: rgba(230,81,0,0.12); color: #e65100; }

body.excel-blue .empty-state { color: #4a7aa3; }

body.excel-blue input[type="text"],
body.excel-blue input[type="date"] {
    background: #fff;
    border-color: #8ab4d8;
    color: #333;
}

body.excel-blue .btn-primary { background: #7aadd4; }
body.excel-blue .btn-primary:hover { background: #8ab8dd; }
body.excel-blue .btn-success { background: #2e7d32; }
body.excel-blue .btn-success:hover { background: #388e3c; }
body.excel-blue .btn-danger { background: #c62828; }
body.excel-blue .btn-danger:hover { background: #d32f2f; }

body.excel-blue .selected-count { background: #7aadd4; }

body.excel-blue .tab {
    background: #c8ddf0;
    border-color: #a8c8e8;
    color: #2c5a80;
}
body.excel-blue .tab:hover { background: #a8c8e8; color: #1a3c58; }
body.excel-blue .tab.active { background: #7aadd4; color: #fff; border-color: #7aadd4; }

body.excel-blue .modal {
    background: #fff;
    border-color: #a8c8e8;
}
body.excel-blue .modal-header h3 { color: #2c5a80; }
body.excel-blue .modal-close { color: #4a7aa3; }

body.excel-blue .thumb-img { border-color: #7aadd4; background: #e8f0f8; }
body.excel-blue .thumb-pdf { border-color: #7aadd4; }

body.excel-blue .import-area { border-color: #8ab4d8; }
body.excel-blue .import-area p { color: #4a7aa3; }

body.excel-blue .import-result.success { background: rgba(46,125,50,0.1); color: #2e7d32; border-color: rgba(46,125,50,0.3); }
body.excel-blue .import-result.error { background: rgba(211,47,47,0.1); color: #c62828; border-color: rgba(211,47,47,0.3); }

body.excel-blue ::-webkit-scrollbar-track { background: #c8ddf0; }
body.excel-blue ::-webkit-scrollbar-thumb { background: #8ab4d8; }
body.excel-blue ::-webkit-scrollbar-thumb:hover { background: #6a9dc4; }

/* Excel Indigo Theme - Transferred Page */
body.excel-indigo {
    background: #e0e8f8;
    color: #333;
}

body.excel-indigo .sidebar {
    background: #4466a0;
    border-left-color: #3655a0;
}

body.excel-indigo .sidebar-header {
    background: linear-gradient(135deg, #4466a0, #3655a0);
    border-bottom-color: #3655a0;
}

body.excel-indigo .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-indigo .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-right-color: #fff;
}

body.excel-indigo .page-header h2 { color: #1a3366; }
body.excel-indigo .page-header p { color: #3655a0; }

body.excel-indigo .stat-card {
    background: #fff;
    border-color: #98b0d8;
}
body.excel-indigo .stat-card .stat-label { color: #3655a0; }

body.excel-indigo .card {
    background: #fff;
    border-color: #98b0d8;
}

body.excel-indigo .card-header h3 { color: #1a3366; }

body.excel-indigo .toolbar {
    background: #c8d8f0;
    border-color: #98b0d8;
}

body.excel-indigo .toolbar-separator { background: #7898c8; }

body.excel-indigo .table-container {
    border-color: #7898c8;
}

body.excel-indigo th {
    background: #5878b0;
    color: #fff;
    border-color: #4868a0;
}

body.excel-indigo td {
    background: #eaf0f8;
    color: #333;
    border-color: #98b0d8;
}

body.excel-indigo tr:nth-child(even) td { background: #d4e0f0; }

body.excel-indigo tr:hover td { background: #c0d0e8 !important; }

body.excel-indigo tr.row-banned td {
    background: rgba(211,47,47,0.1) !important;
    color: #c62828 !important;
    font-weight: 600;
}

body.excel-indigo tr.row-unbanned td {
    background: rgba(0,0,0,0.03) !important;
    color: #222 !important;
    font-weight: 600;
}

body.excel-indigo tr.row-transferred td {
    background: rgba(21,101,192,0.1) !important;
    color: #1565c0 !important;
    font-weight: 600;
}

body.excel-indigo tr.row-waiting td {
    background: rgba(230,81,0,0.08) !important;
    color: #e65100 !important;
    font-weight: 600;
}

body.excel-indigo .badge {
    border-color: rgba(0,0,0,0.1);
}

body.excel-indigo .badge-banned { background: rgba(211,47,47,0.12); color: #c62828; }
body.excel-indigo .badge-transferred { background: rgba(46,125,50,0.12); color: #2e7d32; }
body.excel-indigo .badge-waiting { background: rgba(230,81,0,0.12); color: #e65100; }
body.excel-indigo .badge-active { background: rgba(21,101,192,0.12); color: #1565c0; }
body.excel-indigo .badge-companies { background: rgba(106,27,154,0.12); color: #6a1b9a; }
body.excel-indigo .badge-banks { background: rgba(0,105,92,0.12); color: #00695c; }
body.excel-indigo .badge-individuals { background: rgba(230,81,0,0.12); color: #e65100; }

body.excel-indigo .empty-state { color: #3655a0; }

body.excel-indigo input[type="text"],
body.excel-indigo input[type="date"] {
    background: #fff;
    border-color: #7898c8;
    color: #333;
}

body.excel-indigo .btn-primary { background: #5878b0; }
body.excel-indigo .btn-primary:hover { background: #6888b8; }
body.excel-indigo .btn-success { background: #2e7d32; }
body.excel-indigo .btn-success:hover { background: #388e3c; }
body.excel-indigo .btn-danger { background: #c62828; }
body.excel-indigo .btn-danger:hover { background: #d32f2f; }

body.excel-indigo .selected-count { background: #5878b0; }

body.excel-indigo .tab {
    background: #c8d8f0;
    border-color: #98b0d8;
    color: #1a3366;
}
body.excel-indigo .tab:hover { background: #98b0d8; color: #0d1a33; }
body.excel-indigo .tab.active { background: #5878b0; color: #fff; border-color: #5878b0; }

body.excel-indigo .modal {
    background: #fff;
    border-color: #98b0d8;
}
body.excel-indigo .modal-header h3 { color: #1a3366; }
body.excel-indigo .modal-close { color: #3655a0; }

body.excel-indigo .thumb-img { border-color: #5878b0; background: #eaf0f8; }
body.excel-indigo .thumb-pdf { border-color: #5878b0; }

body.excel-indigo .import-area { border-color: #7898c8; }
body.excel-indigo .import-area p { color: #3655a0; }

body.excel-indigo .import-result.success { background: rgba(46,125,50,0.1); color: #2e7d32; border-color: rgba(46,125,50,0.3); }
body.excel-indigo .import-result.error { background: rgba(211,47,47,0.1); color: #c62828; border-color: rgba(211,47,47,0.3); }

body.excel-indigo ::-webkit-scrollbar-track { background: #c8d8f0; }
body.excel-indigo ::-webkit-scrollbar-thumb { background: #7898c8; }
body.excel-indigo ::-webkit-scrollbar-thumb:hover { background: #5878b0; }

/* Excel Dark Theme - Waiting Page */
body.excel-dark {
    background: #567a1e;
    color: #fff;
}

body.excel-dark .sidebar {
    background: #1a1a1a;
    border-left-color: #444;
}

body.excel-dark .sidebar-header {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-bottom-color: #444;
}

body.excel-dark .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-dark .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #a5d6a7;
    border-right-color: #a5d6a7;
}

body.excel-dark .page-header h2 { color: #fff; }
body.excel-dark .page-header p { color: #c8e6c9; }

body.excel-dark .stat-card {
    background: #6d9a2e;
    border-color: #8bc34a;
}
body.excel-dark .stat-card .stat-label { color: #e8f5e9; }

body.excel-dark .card {
    background: #6d9a2e;
    border-color: #8bc34a;
}

body.excel-dark .card-header h3 { color: #fff; }

body.excel-dark .toolbar {
    background: #567a1e;
    border-color: #6d9a2e;
}

body.excel-dark .toolbar-separator { background: #8bc34a; }

body.excel-dark .table-container {
    border-color: #555;
}

body.excel-dark th {
    background: #1a1a1a;
    color: #fff;
    border-color: #555;
}

body.excel-dark td {
    color: #fff;
    border-color: #5a7a22;
}

body.excel-dark tr td { background: #6d9a2e; }

body.excel-dark tr:nth-child(even) td { background: #567a1e; }

body.excel-dark tr:hover td { background: #7ab03a !important; }

body.excel-dark tr.row-banned td {
    background: rgba(211,47,47,0.3) !important;
    color: #ffcdd2 !important;
    font-weight: 600;
}

body.excel-dark tr.row-unbanned td {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    font-weight: 600;
}

body.excel-dark tr.row-transferred td {
    background: rgba(33,150,243,0.3) !important;
    color: #bbdefb !important;
    font-weight: 600;
}

body.excel-dark tr.row-waiting td {
    background: rgba(255,193,7,0.2) !important;
    color: #fff9c4 !important;
    font-weight: 600;
}

body.excel-dark .badge {
    border-color: rgba(255,255,255,0.2);
}

body.excel-dark .badge-banned { background: rgba(211,47,47,0.3); color: #ffcdd2; }
body.excel-dark .badge-transferred { background: rgba(33,150,243,0.3); color: #bbdefb; }
body.excel-dark .badge-waiting { background: rgba(255,193,7,0.3); color: #fff9c4; }
body.excel-dark .badge-active { background: rgba(33,150,243,0.3); color: #bbdefb; }
body.excel-dark .badge-companies { background: rgba(156,39,176,0.3); color: #e1bee7; }
body.excel-dark .badge-banks { background: rgba(0,150,136,0.3); color: #b2dfdb; }
body.excel-dark .badge-individuals { background: rgba(255,152,0,0.3); color: #ffe0b2; }

body.excel-dark .empty-state { color: #c8e6c9; }

body.excel-dark input[type="text"],
body.excel-dark input[type="date"] {
    background: #4a6a18;
    border-color: #6d9a2e;
    color: #fff;
}

body.excel-dark .btn-primary { background: #1a1a1a; }
body.excel-dark .btn-primary:hover { background: #333; }
body.excel-dark .btn-success { background: #2e7d32; }
body.excel-dark .btn-success:hover { background: #388e3c; }
body.excel-dark .btn-danger { background: #c62828; }
body.excel-dark .btn-danger:hover { background: #d32f2f; }

body.excel-dark .selected-count { background: #1a1a1a; }

body.excel-dark .tab {
    background: #567a1e;
    border-color: #6d9a2e;
    color: #c8e6c9;
}
body.excel-dark .tab:hover { background: #6d9a2e; color: #fff; }
body.excel-dark .tab.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

body.excel-dark .modal {
    background: #3a5a14;
    border-color: #6d9a2e;
}
body.excel-dark .modal-header h3 { color: #fff; }
body.excel-dark .modal-close { color: #a5d6a7; }

body.excel-dark .thumb-img { border-color: #8bc34a; background: #4a6a18; }
body.excel-dark .thumb-pdf { border-color: #8bc34a; }

body.excel-dark .import-area { border-color: #8bc34a; }
body.excel-dark .import-area p { color: #c8e6c9; }

body.excel-dark .import-result.success { background: rgba(76,175,80,0.2); color: #a5d6a7; border-color: rgba(76,175,80,0.4); }
body.excel-dark .import-result.error { background: rgba(211,47,47,0.2); color: #ef9a9a; border-color: rgba(211,47,47,0.4); }

body.excel-dark ::-webkit-scrollbar-track { background: #3a5a14; }
body.excel-dark ::-webkit-scrollbar-thumb { background: #6d9a2e; }
body.excel-dark ::-webkit-scrollbar-thumb:hover { background: #8bc34a; }

/* Excel Cyan Theme - Violations Page */
body.excel-cyan {
    background: #e4f1fb;
    color: #333;
}

body.excel-cyan .sidebar {
    background: #4a90c4;
    border-left-color: #3a7eb0;
}

body.excel-cyan .sidebar-header {
    background: linear-gradient(135deg, #4a90c4, #3a7eb0);
    border-bottom-color: #3a7eb0;
}

body.excel-cyan .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

body.excel-cyan .nav-item.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-right-color: #fff;
}

body.excel-cyan .page-header h2 { color: #1a5276; }
body.excel-cyan .page-header p { color: #3a7eb0; }

body.excel-cyan .stat-card {
    background: #fff;
    border-color: #90caf9;
}
body.excel-cyan .stat-card .stat-label { color: #3a7eb0; }

body.excel-cyan .card {
    background: #fff;
    border-color: #90caf9;
}

body.excel-cyan .card-header h3 { color: #1a5276; }

body.excel-cyan .toolbar {
    background: #d0e8f8;
    border-color: #90caf9;
}

body.excel-cyan .toolbar-separator { background: #64b5f6; }

body.excel-cyan .table-container {
    border-color: #64b5f6;
}

body.excel-cyan th {
    background: #64b5f6;
    color: #fff;
    border-color: #42a5f5;
}

body.excel-cyan td {
    background: #e3f2fd;
    color: #333;
    border-color: #90caf9;
}

body.excel-cyan tr:nth-child(even) td { background: #bbdefb; }

body.excel-cyan tr:hover td { background: #90caf9 !important; }

body.excel-cyan tr.row-banned td {
    background: rgba(211,47,47,0.1) !important;
    color: #c62828 !important;
    font-weight: 600;
}

body.excel-cyan tr.row-unbanned td {
    background: rgba(0,0,0,0.03) !important;
    color: #222 !important;
    font-weight: 600;
}

body.excel-cyan tr.row-transferred td {
    background: rgba(21,101,192,0.1) !important;
    color: #1565c0 !important;
    font-weight: 600;
}

body.excel-cyan tr.row-waiting td {
    background: rgba(230,81,0,0.08) !important;
    color: #e65100 !important;
    font-weight: 600;
}

body.excel-cyan .badge {
    border-color: rgba(0,0,0,0.1);
}

body.excel-cyan .badge-banned { background: rgba(211,47,47,0.12); color: #c62828; }
body.excel-cyan .badge-transferred { background: rgba(46,125,50,0.12); color: #2e7d32; }
body.excel-cyan .badge-waiting { background: rgba(230,81,0,0.12); color: #e65100; }
body.excel-cyan .badge-active { background: rgba(21,101,192,0.12); color: #1565c0; }
body.excel-cyan .badge-companies { background: rgba(106,27,154,0.12); color: #6a1b9a; }
body.excel-cyan .badge-banks { background: rgba(0,105,92,0.12); color: #00695c; }
body.excel-cyan .badge-individuals { background: rgba(230,81,0,0.12); color: #e65100; }

body.excel-cyan .empty-state { color: #3a7eb0; }

body.excel-cyan input[type="text"],
body.excel-cyan input[type="date"] {
    background: #fff;
    border-color: #64b5f6;
    color: #333;
}

body.excel-cyan .btn-primary { background: #64b5f6; }
body.excel-cyan .btn-primary:hover { background: #72c0ff; }
body.excel-cyan .btn-success { background: #2e7d32; }
body.excel-cyan .btn-success:hover { background: #388e3c; }
body.excel-cyan .btn-danger { background: #c62828; }
body.excel-cyan .btn-danger:hover { background: #d32f2f; }

body.excel-cyan .selected-count { background: #64b5f6; }

body.excel-cyan .tab {
    background: #d0e8f8;
    border-color: #90caf9;
    color: #1a5276;
}
body.excel-cyan .tab:hover { background: #90caf9; color: #0d2f4a; }
body.excel-cyan .tab.active { background: #64b5f6; color: #fff; border-color: #64b5f6; }

body.excel-cyan .modal {
    background: #fff;
    border-color: #90caf9;
}
body.excel-cyan .modal-header h3 { color: #1a5276; }
body.excel-cyan .modal-close { color: #3a7eb0; }

body.excel-cyan .thumb-img { border-color: #64b5f6; background: #e3f2fd; }
body.excel-cyan .thumb-pdf { border-color: #64b5f6; }

body.excel-cyan .import-area { border-color: #64b5f6; }
body.excel-cyan .import-area p { color: #3a7eb0; }

body.excel-cyan .import-result.success { background: rgba(46,125,50,0.1); color: #2e7d32; border-color: rgba(46,125,50,0.3); }
body.excel-cyan .import-result.error { background: rgba(211,47,47,0.1); color: #c62828; border-color: rgba(211,47,47,0.3); }

body.excel-cyan ::-webkit-scrollbar-track { background: #d0e8f8; }
body.excel-cyan ::-webkit-scrollbar-thumb { background: #64b5f6; }
body.excel-cyan ::-webkit-scrollbar-thumb:hover { background: #42a5f5; }
