/* --- Modernes Card-Design für den Mittagstisch --- */

.mt-wrapper {
    width: 100%;
    max-width: 800px; /* Optional: Begrenzt die Breite für bessere Lesbarkeit */
    margin: 0 auto;
}

/* Jede Kategorie (z.B. ein Wochentag) wird eine Karte */
.mt-category-card {
    background-color: #f9f9f9; /* Ganz leichtes Grau als Hintergrund */
    border: 1px solid #e0e0e0; /* Feiner Rahmen */
    border-radius: 12px;       /* Abgerundete Ecken */
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0,05); /* Dezenter Schatten für Tiefe */
}

.mt-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--petrol); /* Dein Rot-Ton */
    margin-bottom: 15px;
    border-bottom: 2px solid var(--petrol);
    padding-bottom: 8px;
    display: inline-block; /* Linie nur so lang wie der Text */
}

.mt-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.mt-item:last-child {
    border-bottom: none; /* Letztes Gericht in der Karte ohne Linie */
}

.mt-name {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #222; /* Fast Schwarz für maximalen Kontrast */
}

.mt-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333; /* Dunkleres Grau/Anthrazit für bessere Lesbarkeit */
}

.mt-meta {
    text-align: right;
    min-width: 120px;
    padding-left: 15px;
    display: flex;         /* Aktiviert Flexbox */
    align-items: center;   /* Vertikal mittig ausrichten */
    justify-content: flex-end; /* Rechtsbündig halten */
    gap: 8px;              /* Abstand zwischen Einheit und Preis */
    flex-wrap: wrap;       /* Erlaubt Umbruch, wenn Platz nicht reicht */
}

.mt-unit {
    font-size: 0.85rem;
    color: #444;
    white-space: nowrap;   /* Verhindert Umbruch innerhalb des Wortes */
}

.mt-price {
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    white-space: nowrap;
}

/* Mobile Optimierung: Untereinander erst bei sehr schmalen Bildschirmen */
@media (max-width: 480px) {
    .mt-meta {
        flex-direction: column; /* Auf Handys wieder untereinander */
        align-items: flex-end;
        gap: 2px;
    }
}

/* Zusatzstoffe & Varianten */
.mt-extras {
    font-size: 0.85rem;
    color: var(--petrol); /* In Rot, um es als "Info" abzuheben */
    font-weight: 600;
    margin-bottom: 8px;
}




/* Button-Styling bleibt wie gehabt */
.print-button {
    background: var(--petrol) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    margin-bottom: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 1rem !important;
}