/* ===== NENY CRM Enterprise 4.0 ===== */
:root {
    --primary: #0a2540; --primary-light: #1a3a5c; --secondary: #00a86b;
    --secondary-light: #00c77d; --accent: #635bff; --danger: #dc3545;
    --warning: #ffc107; --info: #0dcaf0; --success: #198754; --purple: #6f42c1;
    --dark: #0f172a; --light: #f8f9fa; --gray: #6c757d; --gray-light: #e9ecef;
    --border: #dee2e6; --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12); --radius: 12px; --radius-sm: 8px;
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    min-height: 100vh; color: var(--dark); overflow-x: hidden;
}

/* ===== LOGIN ===== */
.login-container {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; padding: 20px;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 50%, #00a86b 100%);
    position: relative; overflow: hidden;
}
.login-container::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    background: rgba(255,255,255,0.03); border-radius: 50%;
    top: -200px; right: -200px;
}
.login-container::after {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: rgba(0,168,107,0.1); border-radius: 50%;
    bottom: -100px; left: -100px;
}
.login-card {
    background: white; border-radius: var(--radius); padding: 40px;
    width: 100%; max-width: 420px; box-shadow: var(--shadow-lg);
    position: relative; z-index: 1; animation: slideUp 0.6s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.login-header { text-align: center; margin-bottom: 30px; }
.logo-container { display: flex; flex-direction: column; align-items: center; }
.logo-icon { width: 80px; height: 80px; margin-bottom: 15px; }
.logo-svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.logo-text { font-size: 2.5rem; font-weight: 800; color: var(--primary); letter-spacing: 4px; margin: 0; }
.logo-subtitle { font-size: 0.9rem; color: var(--secondary); font-weight: 600; letter-spacing: 6px; margin: 5px 0 0 0; }
.version-badge { background: var(--secondary); color: white; padding: 2px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; margin-top: 8px; }
.login-form .form-floating { margin-bottom: 16px; }
.login-form .form-control { border: 2px solid var(--gray-light); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.95rem; transition: var(--transition); }
.login-form .form-control:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(0,168,107,0.1); }
.btn-toggle-password { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gray); cursor: pointer; z-index: 10; }
.btn-login { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); border: none; padding: 14px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; color: white; transition: var(--transition); box-shadow: 0 4px 15px rgba(0,168,107,0.3); }
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,168,107,0.4); }
.login-links { text-align: center; }
.login-links a { color: var(--secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.login-footer { text-align: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--gray-light); }
.login-footer p { margin: 0; font-size: 0.75rem; color: var(--gray); }

/* ===== DASHBOARD ===== */
.dashboard-container { display: flex; min-height: 100vh; background: #f5f7fa; }
.sidebar {
    width: 280px; background: var(--primary); color: white;
    display: flex; flex-direction: column; position: fixed;
    height: 100vh; z-index: 1000; transition: var(--transition); overflow-y: auto;
}
.sidebar.collapsed { width: 70px; }
.sidebar-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-logo { display: flex; align-items: center; gap: 12px; }
.sidebar-logo-svg { width: 40px; height: 40px; }
.sidebar-logo span { font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.sidebar.collapsed .sidebar-logo span, .sidebar.collapsed .user-info, .sidebar.collapsed .sidebar-nav span, .sidebar.collapsed .btn-logout span { display: none; }
.btn-close-sidebar { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 1.2rem; }
.sidebar-user { padding: 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.user-avatar { width: 45px; height: 45px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.user-name { display: block; font-weight: 600; font-size: 0.95rem; }
.user-role { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.sidebar-nav { flex: 1; padding: 15px 0; overflow-y: auto; }
.nav-item { display: flex; align-items: center; gap: 14px; padding: 12px 20px; color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); border-left: 3px solid transparent; white-space: nowrap; }
.nav-item:hover { background: rgba(255,255,255,0.05); color: white; }
.nav-item.active { background: rgba(0,168,107,0.15); color: var(--secondary-light); border-left-color: var(--secondary); }
.nav-item i { width: 24px; text-align: center; font-size: 1.1rem; }
.sidebar-footer { padding: 15px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.btn-logout { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px; background: rgba(220,53,69,0.2); border: none; border-radius: var(--radius-sm); color: #ff6b7a; cursor: pointer; transition: var(--transition); }
.btn-logout:hover { background: rgba(220,53,69,0.3); }
.main-content { flex: 1; margin-left: 280px; display: flex; flex-direction: column; transition: var(--transition); }
.sidebar.collapsed + .main-content { margin-left: 70px; }
.top-bar { background: white; padding: 15px 25px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.btn-menu-toggle { background: none; border: none; font-size: 1.3rem; color: var(--primary); cursor: pointer; padding: 8px; border-radius: var(--radius-sm); transition: var(--transition); }
.btn-menu-toggle:hover { background: var(--gray-light); }
.top-bar-title h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 0; }
.top-bar-actions { display: flex; gap: 10px; }
.btn-icon { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--gray-light); color: var(--primary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); position: relative; }
.btn-icon:hover { background: var(--primary); color: white; }
.btn-icon .badge { position: absolute; top: -2px; right: -2px; background: var(--danger); color: white; font-size: 0.65rem; padding: 2px 6px; border-radius: 10px; }
.content-area { padding: 25px; flex: 1; overflow-y: auto; }
.section { display: none; animation: fadeIn 0.4s ease; }
.section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.section-header h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.section-actions { display: flex; gap: 10px; align-items: center; }
.search-box { position: relative; }
.search-box i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray); }
.search-box input { padding: 10px 15px 10px 40px; border: 2px solid var(--border); border-radius: var(--radius-sm); width: 280px; font-size: 0.9rem; transition: var(--transition); }
.search-box input:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 3px rgba(0,168,107,0.1); }

/* Dashboard Header */
.dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.dashboard-header h3 { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.date-filter { display: flex; gap: 8px; }
.date-filter .btn { border-radius: 20px; padding: 6px 18px; font-size: 0.85rem; font-weight: 500; }
.date-filter .btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* KPI Cards */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 25px; }
.kpi-card { background: white; border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow); transition: var(--transition); }
.kpi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.kpi-icon { width: 55px; height: 55px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; }
.bg-primary { background: linear-gradient(135deg, #0a2540, #1a3a5c); }
.bg-success { background: linear-gradient(135deg, #198754, #20c997); }
.bg-warning { background: linear-gradient(135deg, #ffc107, #ffca2c); color: #333 !important; }
.bg-info { background: linear-gradient(135deg, #0dcaf0, #6ee7ff); }
.bg-danger { background: linear-gradient(135deg, #dc3545, #ff6b7a); }
.bg-purple { background: linear-gradient(135deg, #6f42c1, #a78bfa); }
.kpi-info { flex: 1; }
.kpi-label { display: block; font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; }
.kpi-value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.kpi-trend { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; margin-top: 4px; }
.kpi-trend.up { color: var(--success); }
.kpi-trend.down { color: var(--danger); }

/* Charts */
.charts-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; margin-bottom: 25px; }
.chart-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.chart-header h4 { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin: 0; }

/* Activity */
.activity-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.card-header h4 { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin: 0; }
.activity-list { display: flex; flex-direction: column; gap: 12px; }
.activity-item { display: flex; align-items: center; gap: 15px; padding: 12px; border-radius: var(--radius-sm); background: #f8f9fa; transition: var(--transition); }
.activity-item:hover { background: #e9ecef; }
.activity-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; }
.activity-info { flex: 1; }
.activity-title { font-weight: 600; font-size: 0.95rem; color: var(--primary); }
.activity-desc { font-size: 0.85rem; color: var(--gray); }
.activity-time { font-size: 0.8rem; color: var(--gray); white-space: nowrap; }

/* Data Tables */
.data-table-container { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--primary); color: white; padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.data-table tr:hover td { background: #f8f9fa; }
.data-table tr:last-child td { border-bottom: none; }
.status-badge { padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.status-ativo { background: #d1fae5; color: #065f46; }
.status-inativo { background: #fee2e2; color: #991b1b; }
.status-pendente { background: #fef3c7; color: #92400e; }
.status-aprovado { background: #d1fae5; color: #065f46; }
.status-rejeitado { background: #fee2e2; color: #991b1b; }
.status-novo { background: #dbeafe; color: #1e40af; }
.btn-action { width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--gray-light); color: var(--primary); cursor: pointer; transition: var(--transition); margin: 0 2px; }
.btn-action:hover { background: var(--primary); color: white; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 15px; }

/* Kanban */
.kanban-board { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.kanban-column { min-width: 280px; background: #f0f2f5; border-radius: var(--radius); padding: 15px; }
.kanban-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.kanban-title { font-weight: 600; font-size: 0.95rem; color: var(--primary); }
.kanban-count { background: var(--primary); color: white; padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }
.kanban-item { background: white; border-radius: var(--radius-sm); padding: 15px; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); cursor: grab; transition: var(--transition); }
.kanban-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-2px); }
.kanban-item-title { font-weight: 600; font-size: 0.95rem; color: var(--primary); margin-bottom: 8px; }
.kanban-item-meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--gray); }
.kanban-item-tag { padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }

/* Calendar */
.calendar-container { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.calendar-header h4 { font-weight: 700; color: var(--primary); margin: 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.calendar-day-header { text-align: center; font-weight: 600; font-size: 0.85rem; color: var(--gray); padding: 10px; }
.calendar-day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); position: relative; font-size: 0.9rem; border: 2px solid transparent; }
.calendar-day:hover { background: #f0f2f5; }
.calendar-day.today { background: var(--secondary); color: white; font-weight: 700; }
.calendar-day.has-event::after { content: ''; position: absolute; bottom: 6px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.calendar-day.other-month { color: var(--gray); opacity: 0.5; }

/* Marketing */
.marketing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.marketing-card { background: white; border-radius: var(--radius); padding: 25px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.marketing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.5rem; color: white; }
.bg-facebook { background: #1877f2; }
.bg-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.bg-whatsapp { background: #25d366; }
.bg-google { background: #ea4335; }
.marketing-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.marketing-card p { font-size: 0.9rem; color: var(--gray); margin: 4px 0; }

/* Funnel */
.funnel-container { background: white; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.funnel-stage { margin-bottom: 12px; }
.funnel-bar { background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%); border-radius: var(--radius-sm); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; color: white; transition: var(--transition); min-width: 200px; }
.funnel-bar:hover { transform: scale(1.02); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.funnel-label { font-weight: 600; font-size: 0.95rem; }
.funnel-value { font-weight: 700; font-size: 1.1rem; }

/* Finance */
.finance-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 25px; }
.finance-card { background: white; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); border-left: 4px solid; }
.finance-card.receber { border-left-color: var(--success); }
.finance-card.pagar { border-left-color: var(--danger); }
.finance-card.saldo { border-left-color: var(--info); }
.finance-card h4 { font-size: 1rem; color: var(--gray); margin-bottom: 10px; }
.finance-value { font-size: 1.8rem; font-weight: 700; color: var(--primary); }

/* Map */
.map-container { background: white; border-radius: var(--radius); box-shadow: var(--shadow); height: 500px; overflow: hidden; }

/* Reports */
.reports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.report-card { background: white; border-radius: var(--radius); padding: 25px; text-align: center; box-shadow: var(--shadow); cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.report-card:hover { border-color: var(--secondary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.report-card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; }
.report-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.report-card p { font-size: 0.85rem; color: var(--gray); }

/* Config */
.config-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.config-card { background: white; border-radius: var(--radius); padding: 25px; text-align: center; box-shadow: var(--shadow); cursor: pointer; transition: var(--transition); }
.config-card:hover { background: var(--primary); color: white; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.config-card:hover i, .config-card:hover h4 { color: white; }
.config-card i { font-size: 2rem; color: var(--secondary); margin-bottom: 12px; }
.config-card h4 { font-size: 1rem; font-weight: 600; color: var(--primary); }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 2000; backdrop-filter: blur(4px); }
.modal-content { background: white; border-radius: var(--radius); width: 90%; max-width: 700px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalSlide 0.3s ease; }
@keyframes modalSlide { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 0; }
.btn-close { background: none; border: none; font-size: 1.3rem; color: var(--gray); cursor: pointer; transition: var(--transition); }
.btn-close:hover { color: var(--danger); }
.modal-body { padding: 25px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 15px 25px; border-top: 1px solid var(--border); background: #f8f9fa; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 0.95rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 3px rgba(0,168,107,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* Toast */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: white; border-radius: var(--radius-sm); padding: 15px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: toastSlide 0.4s ease; border-left: 4px solid; }
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--info); }
@keyframes toastSlide { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Buttons */
.btn { padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--transition); border: 2px solid transparent; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); color: white; border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,168,107,0.3); }
.btn-secondary { background: var(--gray-light); color: var(--primary); border: 2px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover, .btn-outline-primary.active { background: var(--primary); color: white; }
.btn-outline-secondary { background: transparent; color: var(--gray); border: 2px solid var(--border); }
.btn-outline-secondary:hover { background: var(--gray-light); }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
    .sidebar { width: 70px; }
    .sidebar .sidebar-logo span, .sidebar .user-info, .sidebar .sidebar-nav span, .sidebar .btn-logout span { display: none; }
    .main-content { margin-left: 70px; }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .charts-row { grid-template-columns: 1fr; }
    .search-box input { width: 200px; }
    .section-header { flex-direction: column; gap: 10px; align-items: flex-start; }
}
@media (max-width: 576px) {
    .kpi-grid { grid-template-columns: 1fr; }
    .login-card { padding: 25px; }
    .content-area { padding: 15px; }
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1a1; }
@media print {
    .sidebar, .top-bar, .btn-menu-toggle, .section-actions { display: none !important; }
    .main-content { margin-left: 0 !important; }
    .section { display: block !important; }
}
