/* Daily Menu Plugin Styles - Das Pfeffer Restaurant */
.daily-menu {
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.daily-menu h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    line-height: 1.3;
}

.daily-menu h3 strong {
    color: #d2691e;
}

.daily-menu.weekend-closed {
    background: #f0f8ff;
    border-color: #4a90e2;
}

.daily-menu.closed {
    background: #fff5f5;
    border-color: #e53e3e;
}

.daily-menu.no-menu {
    background: #f7f7f7;
    border-color: #ccc;
}

.menu-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.menu-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.menu-section h4 {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-section.vorspeise h4 {
    color: #2d5a27;
}

.menu-section.hauptspeisen h4 {
    color: #8b4513;
}

.menu-section.dessert h4 {
    color: #d2691e;
}

.menu-item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.dish-name {
    color: #333;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    margin-right: 15px;
}

.price {
    color: #333;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}

.main-dish {
    margin-bottom: 20px;
}

.main-dish:last-child {
    margin-bottom: 0;
}

.main-dish .dish-name {
    margin-bottom: 10px;
}

.price-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.price-option .price {
    font-size: 16px;
    margin-bottom: 5px;
}

.portion-size {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.dish-divider {
    text-align: center;
    color: #ccc;
    margin: 15px 0;
    font-size: 18px;
    font-weight: bold;
}

.closed-notice {
    color: #d32f2f;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin: 10px 0;
}

.weekend-closed .closed-notice {
    color: #1976d2;
}

.no-menu-notice {
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 10px 0;
}

/* Restaurant Das Pfeffer spezifische Styles */
.restaurant-das-pfeffer {
    border-color: #d2691e;
}

.restaurant-das-pfeffer h3 {
    border-bottom: 2px solid #d2691e;
    padding-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .daily-menu {
        padding: 15px;
        margin: 15px 0;
    }
    
    .daily-menu h3 {
        font-size: 20px;
    }
    
    .menu-section h4 {
        font-size: 14px;
    }
    
    .menu-item-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dish-name {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .price-options {
        width: 100%;
        justify-content: space-around;
    }
    
    .price-option {
        min-width: 80px;
    }
}

/* Zusätzliche Styles für verschiedene Themes */
.daily-menu * {
    box-sizing: border-box;
}

.daily-menu h3,
.daily-menu h4 {
    font-family: inherit;
}

/* Druckoptimierung */
@media print {
    .daily-menu {
        box-shadow: none;
        border: 1px solid #000;
        margin: 10px 0;
    }
    
    .daily-menu.weekend-closed,
    .daily-menu.closed,
    .daily-menu.no-menu {
        background: #fff !important;
    }
    
    .price-options {
        flex-direction: column;
        gap: 5px;
    }
    
    .price-option {
        flex-direction: row;
        justify-content: space-between;
    }
}