.result-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .result-table th, .result-table td {
            padding: 0.85rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        .result-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #2c3e2f;
        }
        .result-table tr:last-child td {
            border-bottom: none;
        }
        .total-row {
            background-color: #fef7e0;
            font-weight: 700;
            border-top: 2px solid #e0cfa4;
        }
        .serving-badge {
            background-color: #e8f0e7;
            border-radius: 30px;
            padding: 0.3rem 0.75rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #2b5e2b;
        }
        .adv-panel {
            background: #fef9ef;
            border-radius: 16px;
            padding: 1.2rem;
            margin: 1.2rem 0;
            border: 1px solid #f5e6c4;
        }
        .ingredient-icon {
            width: 32px;
            text-align: center;
            color: #c97e2c;
        }
        .cost-estimate {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2a7221;
        }
        .tooltip-custom {
            border-bottom: 1px dashed #adb5bd;
            cursor: help;
        }
        .example-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 0.8rem 0;
        }
        .example-btn-sm {
            background-color: #f4e9d8;
            border: none;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        .example-btn-sm:hover {
            background-color: #e3d4bc;
            transform: translateY(-2px);
        }
        .budget-note {
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }