:root {
        /* Colors */
        --color-bg: #F8F6F6;
        --color-text-primary: #1B1A1A;
        --color-text-secondary: #595959;
        --color-liban: #94C2AE;
        --color-accent: #DD3B31;
        --color-border: #E0DEDD;
        
        /* Typography */
        --font-family: 'Inter', -apple-system, sans-serif;
        --font-family-serif: 'Georgia', 'Times New Roman', serif;
        
        /* Effects */
        --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
        --shadow-deep: 0 12px 48px rgba(0,0,0,0.12);
        --shadow-text: 0 1px 2px rgba(0,0,0,0.05);
    }
    .message.assistant .message-content a { color: #93c2ae; text-decoration: underline }
    /* ----------------------------------
    RECIPE GRID
    ---------------------------------- */
    .sahten-recipe-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    }

    .recipe-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .recipe-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--color-liban);
    }

    .recipe-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    gap: 16px;
    }

    .recipe-image {
    width: 72px; 
    height: 72px;
    background-color: #F5F5F5;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 6px;
    transition: transform 0.3s;
    }

    .recipe-image.no-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    }

    .recipe-image.no-image::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 24px;
    opacity: 0.4;
    }

    .recipe-card:hover .recipe-image { 
    transform: scale(1.05); 
    }

    .recipe-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .recipe-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 4px;
    }

    .recipe-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--color-text-primary);
    }

    .recipe-meta {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-style: italic;
    font-family: var(--font-family-serif);
    }

    /* ----------------------------------
    RECIPE CITATIONS (Grounding)
    ---------------------------------- */
    .recipe-citation {
    font-size: 11px;
    font-style: italic;
    font-family: var(--font-family-serif);
    color: var(--color-text-secondary);
    margin: 6px 0 0 0;
    padding: 0;
    background: none;
    border: none;
    line-height: 1.4;
    opacity: 0.8;
    }

    .recipe-citation::before {
    content: '— ';
    color: var(--color-text-secondary);
    }

    .recipe-citation::after {
    content: none;
    }