/* --- ZÁKLADNÍ NASTAVENÍ (RESET) --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f4f4f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }

        /* --- HLAVIČKA --- */
        header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #ddd;
        }

        h1 {
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        /* --- ROZLOŽENÍ (GRID) --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            /* Responzivní grid: sloupce se přizpůsobí, min. šířka 300px */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 30px;
        }

        /* --- KARTA RESTAURACE --- */
        .restaurant-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            overflow: hidden; /* Aby rohová barva nepřetekla */
            border-top: 5px solid #3498db;
            transition: transform 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
        }

        .restaurant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }

        /* Barvy pro restaurace */
        .restaurant-card:nth-child(1) { border-color: #e74c3c; } /* Červená */
        .restaurant-card:nth-child(2) { border-color: #27ae60; } /* Zelená */
        .restaurant-card:nth-child(3) { border-color: #f39c12; } /* Oranžová */
        .restaurant-card:nth-child(4) { border-color: #8e44ad; } /* Fialová */

        .restaurant-name {
            background-color: #f8f9fa;
            padding: 15px;
            text-align: center;
            font-size: 1.4rem;
            color: #222;
            border-bottom: 1px solid #eee;
            margin: 0;
        }

        .menu-content {
            padding: 20px;
            flex-grow: 1; /* Aby karty měly stejnou výšku obsahu */
        }

        /* --- KATEGORIE --- */
        h3 {
            color: #555;
            font-size: 1rem;
            margin-top: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 700;
            border-left: 4px solid #ccc;
            padding-left: 10px;
        }

        h3:first-of-type {
            margin-top: 0;
        }

        /* --- POLOŽKY MENU (Úprava pro popis) --- */
        ul {
            list-style: none;
        }

        li {
            display: flex;
            justify-content: space-between;
            align-items: flex-start; /* Důležité: zarovná cenu nahoru k názvu */
            margin-bottom: 12px;
            border-bottom: 1px dotted #e0e0e0;
            padding-bottom: 8px;
        }

        li:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        /* Kontejner pro název a popis */
        .item-details {
            display: flex;
            flex-direction: column;
            padding-right: 10px; /* Mezera od ceny */
        }

        .item-name {
            font-weight: 600;
            color: #333;
        }

        /* Styl pro popis jídla */
        .item-desc {
            font-size: 0.85rem;
            color: #777;
            font-style: italic;
            margin-top: 2px;
            line-height: 1.3;
        }

        .item-price {
            font-weight: bold;
            color: #444;
            white-space: nowrap;
            font-size: 0.95rem;
        }

        /* --- PATIČKA --- */
        footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.85rem;
            color: #999;
        }
