/* Estilos específicos para el Menu Junaeb */

.menu-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-nav-btn {
    background-color: var(--blue-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-nav-btn:hover {
    background-color: var(--blue-light);
}

.menu-nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.current-week-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

/* Grid del menú */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-day-header {
    background-color: var(--yellow-accent);
    color: var(--blue-primary);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-date {
    font-size: 0.9rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
}

.menu-body {
    padding: 20px;
}

.meal-section {
    margin-bottom: 20px;
}

.meal-section:last-child {
    margin-bottom: 0;
}

.meal-title {
    font-size: 1rem;
    color: var(--blue-light);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.meal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.meal-list li::before {
    content: '•';
    color: var(--green-brand);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 600px) {
    .menu-toolbar {
        flex-direction: column;
        text-align: center;
    }

    .current-week-label {
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }
}