/**
 * Stili pubblici per Gestione Mensa Scolastica
 */

/* Visualizzazione Menu */
.gms-menu-container {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.gms-menu-header {
    border-bottom: 2px solid #f0f0f1;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.gms-menu-date {
    font-size: 1.2em;
    font-weight: bold;
    color: #4c1d95;
}

.gms-menu-school {
    color: #646970;
    margin-top: 5px;
}

.gms-menu-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gms-course {
    padding: 15px;
    background: #f6f7f7;
    border-radius: 3px;
}

.gms-course-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1d2327;
}

.gms-course-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gms-course-item {
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;
}

.gms-course-item:last-child {
    border-bottom: none;
}

.gms-allergens {
    font-size: 0.9em;
    color: #d63638;
    margin-top: 3px;
}

/* Visualizzazione Presenze */
.gms-attendance-container {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gms-attendance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f1;
}

.gms-attendance-student {
    font-size: 1.2em;
    font-weight: bold;
}

.gms-attendance-period {
    color: #646970;
}

.gms-attendance-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.gms-calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background: #f0f0f1;
}

.gms-calendar-day {
    text-align: center;
    padding: 10px;
    border: 1px solid #e5e5e5;
}

.gms-day-present {
    background: #edfaef;
    color: #46b450;
}

.gms-day-absent {
    background: #fbeaea;
    color: #dc3232;
}

.gms-day-holiday {
    background: #f6f7f7;
    color: #646970;
}

/* Sezione Riepilogo */
.gms-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f1;
}

.gms-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.gms-summary-label {
    font-weight: bold;
}

/* Design Responsivo */
@media screen and (max-width: 782px) {
    .gms-menu-courses {
        grid-template-columns: 1fr;
    }

    .gms-attendance-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gms-attendance-period {
        margin-top: 10px;
    }

    .gms-attendance-calendar {
        font-size: 0.9em;
    }

    .gms-calendar-day {
        padding: 5px;
    }
}

/* Stili per la Stampa */
@media print {
    .gms-menu-container,
    .gms-attendance-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .gms-course {
        background: none;
        border: 1px solid #ddd;
    }

    .gms-calendar-header {
        background: none;
        border: 1px solid #ddd;
    }

    .gms-day-present,
    .gms-day-absent,
    .gms-day-holiday {
        background: none;
        color: #000;
    }
} 