        body {
            background: #f8f9fa;
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .dashboard-container {
            padding-top: 120px;
            padding-bottom: 80px;
            min-height: 100vh;
        }

        .dashboard-title {
            text-align: center;
            color: #1f2937;
            margin-bottom: 3rem;
        }

        .dashboard-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .dashboard-title p {
            font-size: 1.2rem;
            color: #6b7280;
            margin: 0;
        }

        .components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .component-card {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
        }

        .component-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            color: #333;
            text-decoration: none;
        }

        .component-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            text-align: center;
            color: #4f46e5;
        }

        .component-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .component-description {
            text-align: center;
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
        }

        .component-card.primary {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
        }

        .component-card.primary .component-icon {
            color: rgba(255, 255, 255, 0.9);
        }

        .component-card.primary .component-title,
        .component-card.primary .component-description {
            color: white;
        }

        .component-card.primary:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b5b95 100%);
            color: white;
        }

        @media (max-width: 768px) {
            .components-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .dashboard-title h1 {
                font-size: 2rem;
            }

            .component-card {
                padding: 2rem;
            }

            .component-icon {
                font-size: 3rem;
            }
        }

        .navbar {
            background: #ffffff !important;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .navbar.fixed-bottom {
            background: #092b5c !important;
        }
