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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        .header {
            background: white;
            padding: 15px 20px;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #4a90e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .header-title {
            font-size: 18px;
            font-weight: 600;
            color: #666;
        }

        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .notification-btn, .help-btn {
            width: 35px;
            height: 35px;
            border: none;
            border-radius: 50%;
            background: #f0f0f0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-btn {
            background: #ff4444;
            color: white;
        }

        .container {
            display: flex;
            min-height: calc(100vh - 70px);
        }

        .sidebar {
            width: 200px;
            background: white;
            border-right: 1px solid #ddd;
            padding: 20px 0;
        }

        .nav-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: #666;
            text-decoration: none;
            gap: 10px;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }

        .nav-item:hover {
            background: #f8f9fa;
            color: #333;
        }

        .nav-item.active {
            background: #e8f4f8;
            color: #4a90e2;
            border-left-color: #4a90e2;
        }

        .nav-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-content {
            flex: 1;
            padding: 30px;
            display: flex;
            gap: 30px;
        }

        .casework-section {
            flex: 1;
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .sidebar-stats {
            width: 300px;
        }

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

        .page-title {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .page-subtitle {
            font-size: 16px;
            color: #666;
        }

        .filters-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .filters-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-weight: 600;
            color: #333;
        }

        .filters-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 15px;
            align-items: end;
        }

        .filter-input {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            background: white;
        }

        .filter-select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            background: white;
            cursor: pointer;
        }

        .status-tabs {
            font-size: 12px;
            display: flex;
            background: #e9ecef;
            border-radius: 8px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .status-tab {
            flex: 1;
            padding: 12px 20px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
            color: #666;
        }

        .status-tab.active {
            background: #4ecdc4;
            color: white;
        }

        .status-tab:hover:not(.active) {
            background: #dee2e6;
        }

        .case-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .case-card {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 25px;
            background: white;
            transition: all 0.2s;
            cursor: pointer;
        }

        .case-card:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .case-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .case-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .case-id {
            font-size: 12px;
            color: #666;
            font-weight: normal;
        }

        .case-content {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .case-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .case-meta {
            display: flex;
            gap: 15px;
            align-items: center;
            font-size: 12px;
            color: #666;
        }

        .case-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        .indicator.urgent { background: #e74c3c; }
        .indicator.warning { background: #f39c12; }
        .indicator.normal { background: #27ae60; }

        .stats-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

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

        .stat-title {
            font-size: 16px;
            font-weight: 600;
            color: #666;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f39c12;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .stat-change {
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stat-change.negative {
            color: #e74c3c;
        }

        .stat-change.positive {
            color: #27ae60;
        }

        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
            }
            
            .sidebar-stats {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                display: flex;
                overflow-x: auto;
                padding: 10px 0;
            }
            
            .nav-item {
                min-width: 120px;
                text-align: center;
                border-left: none;
                border-bottom: 3px solid transparent;
            }
            
            .nav-item.active {
                border-left: none;
                border-bottom-color: #4a90e2;
            }
            
            .main-content {
                padding: 20px;
            }

            .filters-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .status-tabs {
                flex-wrap: wrap;
            }

            .status-tab {
                min-width: 100px;
            }
        }
