.result-value-large {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .bmi-category {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 500;
        }
        .bmi-underweight { background-color: #cfe2ff; color: #084298; }
        .bmi-normal { background-color: #d1e7dd; color: #0f5132; }
        .bmi-overweight { background-color: #fff3cd; color: #856404; }
        .bmi-obese { background-color: #f8d7da; color: #842029; }
        .macro-box {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .disclaimer-note {
            font-size: 0.85rem;
            background-color: #eef2ff;
            border-left: 4px solid var(--primary-color);
            padding: 0.8rem 1rem;
            border-radius: 8px;
            margin-top: 1.2rem;
        }
        .bmi-canvas-container {
            background: #ffffff;
            border-radius: 12px;
            padding: 1rem;
            margin: 1rem 0;
        }
        .progress-custom {
            height: 12px;
            border-radius: 10px;
        }
        .example-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1rem 0;
        }
        .example-tag {
            background-color: rgba(70, 130, 180, 0.12);
            border-radius: 30px;
            padding: 0.3rem 0.9rem;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
            border: 1px solid rgba(70,130,180,0.3);
        }
        .example-tag:hover {
            background-color: rgba(70,130,180,0.25);
            transform: translateY(-2px);
        }
        .result-highlight {
            background: linear-gradient(145deg, #f8f9fc, #ffffff);
            border-radius: 20px;
            padding: 1.2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .insight-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #2c3e4e;
        }
        .safety-warning {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 0.5rem 0.8rem;
            font-size: 0.85rem;
            border-radius: 6px;
            margin-top: 0.8rem;
        }