		.dashboard-container {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #f8f9fa;
            min-height: 100vh;
        }
		.welcome-card {
            background: linear-gradient(135deg, #4caf50, #2e7d32);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            text-align: center;
            border-left: 5px solid #4caf50;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #2e7d32;
            margin: 10px 0;
        }
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .action-btn {
            background: #4caf50;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            display: block;
            transition: all 0.3s;
            font-size: 14px;
        }
        .action-btn:hover {
            background: #388e3c;
            transform: translateY(-2px);
        }
        .activity-section {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-top: 30px;
        }
        .activity-item {
            display: flex;
            justify-content: space-between;
            padding: 12px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        .activity-item:last-child {
            border-bottom: none;
        }
        .section-title {
            color: #2e7d32;
            border-bottom: 2px solid #4caf50;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }