    .main-header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .brand-section {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .brand-logo {
            margin-right: 15px;
        }
        
        .brand-logo i {
            font-size: 32px;
            color: white;
        }
        
        .brand-text {
            line-height: 1.2;
        }
        
        .brand-title {
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            color: white;
            letter-spacing: 0.5px;
        }
        
        .brand-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin: 0;
            font-weight: 400;
        }
        
        /* User Actions Section */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Header Icon Buttons */
        .header-icon-btn {
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .header-icon-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff4081;
            color: white;
            font-size: 11px;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        /* User Profile Dropdown */
        .user-profile {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            padding: 6px 12px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
            min-width: 150px;
        }
        
        .user-profile:hover {
            background: rgba(255,255,255,0.15);
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .user-info {
            flex: 1;
        }
        
        .user-name {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
            color: white;
        }
        
        .user-role {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
            margin: 0;
        }
        
        .dropdown-arrow {
            color: rgba(255,255,255,0.7);
            font-size: 12px;
            margin-left: 5px;
        }
        
        /* Sidebar Toggle */
        .sidebar-toggle-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sidebar-toggle-btn:hover {
            background: rgba(255,255,255,0.1);
        }
        
        /* Dropdown Menu Customization */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .dropdown-item {
            padding: 10px 15px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background: #f8f9fa;
        }
        
        .dropdown-item i {
            width: 20px;
            margin-right: 10px;
            text-align: center;
        }
        
        /* Main Content Adjustments */
        .main-content {
            padding-top: 20px;
        }
        
        /* Income Statement specific styles */
        .statement-header {
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            color: white;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .filter-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .statement-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            border-top: none;
            padding: 15px;
        }
        
        .statement-table td {
            padding: 12px 15px;
            vertical-align: middle;
        }
        
        .income-row {
            background-color: rgba(40, 167, 69, 0.05);
            font-weight: 600;
        }
        
        .expense-row {
            background-color: rgba(220, 53, 69, 0.05);
        }
        
        .total-row {
            background-color: rgba(13, 110, 253, 0.1);
            font-weight: 700;
            font-size: 1.05em;
        }
        
        .profit-row {
            background-color: rgba(40, 167, 69, 0.1);
            color: #28a745;
            font-weight: 700;
            font-size: 1.1em;
        }
        
        .loss-row {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            font-weight: 700;
            font-size: 1.1em;
        }
        
        .amount-cell {
            text-align: right;
            font-family: 'Courier New', monospace;
            font-weight: 500;
        }
        
        .percentage-cell {
            text-align: center;
            font-size: 0.9em;
            color: #6c757d;
        }
        
        .category-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 18px;
        }
        
        .revenue-icon {
            background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
        }
        
        .expense-icon {
            background: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
            color: white;
        }
        
        .chart-container {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .quick-stat-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .quick-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .comparison-badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .positive-change {
            background-color: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }
        
        .negative-change {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .brand-section {
                margin-bottom: 10px;
            }
            
            .user-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .user-profile {
                min-width: auto;
                padding: 6px 8px;
            }
            
            .user-name {
                display: none;
            }
            
            .user-role {
                display: none;
            }
            
            .user-avatar {
                margin-right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .brand-title {
                font-size: 20px;
            }
            
            .brand-subtitle {
                font-size: 12px;
            }
            
            .header-icon-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            
            .statement-table td, .statement-table th {
                padding: 8px;
                font-size: 14px;
            }
        }