/**
 * 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;
    }
}

/* Area Login Genitori */
.gms-login-prompt {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gms-login-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.gms-login-prompt > * {
    position: relative;
    z-index: 2;
}

.gms-login-prompt h2 {
    font-size: 2.2em;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gms-login-prompt p {
    font-size: 1.1em;
    margin: 0 0 30px 0;
    opacity: 0.9;
    line-height: 1.5;
}

.gms-login-prompt .gms-btn {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.gms-login-prompt .gms-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive per Area Login */
@media screen and (max-width: 768px) {
    .gms-login-prompt {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .gms-login-prompt h2 {
        font-size: 1.8em;
    }
    
    .gms-login-prompt p {
        font-size: 1em;
    }
    
    .gms-login-prompt .gms-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* 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;
    }
    
    .gms-login-prompt {
        background: #f0f0f0 !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    
    .gms-login-prompt .gms-btn {
        background: #ddd !important;
        color: #000 !important;
        border: 1px solid #999 !important;
    }
} 