* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        body {
            background: #f4f7fc;
            color: #1e2a3e;
        }
        :root {
            --primary: #0f6e4a;
            --primary-dark: #0a4f35;
            --secondary: #ff9f4a;
            --accent: #2c7da0;
            --gray-light: #eef2f5;
            --gray: #d0dbe8;
            --danger: #e76f51;
            --success: #2a9d8f;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            padding: 16px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0f6e4a, #2c7da0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
            .logo span {
            color: #ff9f4a;
            background: none;
        }
        .nav-links a {
            margin-left: 24px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }
        .btn {
            padding: 10px 20px;
            border-radius: 40px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            background: var(--primary);
            color: white;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        .card {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            margin-bottom: 24px;
            border: 1px solid #e9edf2;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .health-badge {
            background: #eef2fa;
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .score-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: conic-gradient(var(--primary) 0deg, #e9ecef 0deg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
        }
        footer {
            text-align: center;
            padding: 32px;
            color: #6c757d;
            border-top: 1px solid #e2e8f0;
            margin-top: 48px;
        }
        input, select, textarea {
            width: 100%;
            padding: 12px;
            border-radius: 16px;
            border: 1px solid #cbd5e1;
            margin-top: 6px;
            margin-bottom: 16px;
        }
        label {
            font-weight: 500;
        }
        .alert {
            padding: 12px;
            border-radius: 16px;
            background: #e9f7ef;
            color: #2e7d32;
        }
        .table-responsive {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links a {
                margin: 0 12px;
            }
        }