.nutrition-card {
            border-left: 5px solid var(--primary-color);
            transition: 0.2s;
        }
        .macro-circle {
            display: inline-block;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #f1f9ff;
            text-align: center;
            line-height: 70px;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 8px;
        }
        .macro-item {
            background: #f8fafc;
            border-radius: 20px;
            padding: 10px 15px;
            text-align: center;
        }
        .macro-value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        .serving-slider {
            width: 100%;
            margin-top: 0.5rem;
        }
        .nutrition-table {
            width: 100%;
            border-collapse: collapse;
        }
        .nutrition-table td {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e7ed;
        }
        .result-food-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f3a5f;
        }
        .search-suggestions-box {
            position: relative;
        }
        .suggestions-list {
            position: absolute;
            z-index: 1000;
            width: 100%;
            background: white;
            border: 1px solid #ccc;
            border-radius: 8px;
            max-height: 260px;
            overflow-y: auto;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .suggestion-item {
            padding: 8px 12px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
        }
        .suggestion-item:hover {
            background-color: #e9f0f9;
        }
        .calorie-badge {
            font-size: 2rem;
            font-weight: 800;
            color: #2c7da0;
        }
        .daily-value {
            background: #eef2f5;
            border-radius: 12px;
            padding: 8px 12px;
            font-size: 0.9rem;
        }
        .progress-bar-custom {
            height: 8px;
            background-color: #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
            margin: 8px 0;
        }
        .progress-fill {
            width: 0%;
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 10px;
        }
        .badge-ref {
            background-color: #2c7da0;
            color: white;
            font-size: 0.7rem;
            border-radius: 40px;
            padding: 0.2rem 0.6rem;
        }
        .feedback-link {
            font-size: 0.8rem;
            text-decoration: none;
            border-bottom: 1px dotted;
        }
        .disclaimer-box {
            background-color: #fef3e8;
            border-left: 4px solid #f0ad4e;
            font-size: 0.85rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            margin-top: 0.75rem;
        }
        @media (max-width: 768px) {
            .result-food-name { font-size: 1.4rem; }
            .macro-value { font-size: 1.2rem; }
        }