/* =========================================
   1. STILI GENERALI (Base & Layout)
   ========================================= */
:root {
    --primary-color: #4A0404;
    --primary-hover: #6d0606;
    --bg-light: #f2efe0;
    --bg-main: #f4f7f6;
    --text-dark: #333;
    --text-muted: #666;
    --accent-green: #a3c16a;
    --error-color: #e74c3c;
    --error-bg: #fdf2f2;
    --success-color: #2ecc71;
    --border-default: #ccc;
}

body { 
    font-family: sans-serif; 
    background: var(--bg-main); 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent; 
}

.container {
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   2. ANIMAZIONE CLESSIDRA (Loader)
   ========================================= */
/* Loader con immagine reale */
.clessidra-custom {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
    /* Puntiamo al file fisico invece della stringa infinita */
    background: url('../img/clessidra.png') no-repeat center center;
    background-size: contain;
    animation: pulse-loader 1.5s infinite ease-in-out;
}

@keyframes pulse-loader {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

#initial-loader, #loader-modulo {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: white; 
    z-index: 10005; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
}



/* =========================================
   3. LOGIN & BOTTONI PRINCIPALI
   ========================================= */
.login-container { 
    max-width: 400px; 
    margin: 20px auto; 
    padding: 25px; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.input-field { margin-bottom: 15px; }

.input-field label { 
    display: block; 
    font-size: 0.9em; 
    font-weight: bold; 
    margin-bottom: 5px; 
    color: var(--text-dark); 
}

.input-field input { 
    width: 100%; 
    padding: 12px; 
    box-sizing: border-box; 
    border: 1px solid var(--border-default); 
    border-radius: 6px; 
    font-size: 16px; 
}

.date-flex { display: flex; gap: 10px; }

/* =========================================
   4. BARRA INFO OSPITE (Dashboard)
   ========================================= */
.guest-info-container {
    max-width: 800px;
    margin: 0 auto 15px auto;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;
}

#barra-ospite-info {
    font-size: 0.9em; 
    color: var(--primary-color); 
    font-weight: bold;
    text-align: left;
}

#display-dates {
    font-weight: normal; 
    font-size: 0.85em; 
    color: var(--text-muted);
}

.logout-btn {
    background: var(--bg-main);
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85em;
    color: var(--text-dark);
}

/* =========================================
   5. SELETTORE LINGUE & CARD GUIDA
   ========================================= */
.lang-nav { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

/* =========================================
   6. AREA CONTENUTO GUIDA (Sticky Header)
   ========================================= */
#content-area {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: white; 
    z-index: 9999; 
    overflow-y: auto;
}

.guide-header {
    background: var(--primary-color); 
    color: white; 
    padding: 12px; 
    display: flex; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 10000; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    height: 60px;
    box-sizing: border-box;
}

#inner-guide-title {
    font-size: 1.1em;
    font-weight: bold;
    padding-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================
   7. OTTIMIZZAZIONE MOBILE (Media Queries)
   ========================================= */
@media (max-width: 600px) {
    .guide-header {
        height: 70px !important;
    }
    
    #inner-guide-title { 
        font-size: 18px !important; 
    }
    
    .main-btn {
        padding: 16px;
        font-size: 1.2em;
    }
}

/* --- NUOVA STRUTTURA VETRINA --- */

.text-main-color { color: var(--primary-color) !important; }

/* Fascia dedicata sopra l'immagine */
.hero-text-strip {
    background: var(--bg-light); /* Colore sfondo header */
    text-align: center;
    padding: 20px 10px;
    margin: 0;
}

.hero-text-strip h2 { 
    font-size: 1.8rem; 
    margin: 0 0 5px 0; 
    text-transform: uppercase;
}

.hero-text-strip p { 
    font-size: 1.1rem; 
    margin: 0; 
    font-style: italic;
}

/* --- STILI VETRINA COMPACT --- */

.text-main-color { color: var(--primary-color) !important; }

/* Fascia ridotta in altezza e font più piccolo */
.hero-text-strip {
    background-color: var(--bg-light); /* Colore sfondo header */
    text-align: center;
    padding: 10px 8px; /* Ridotto da 25px a 12px per altezza minore */
    margin: 0;
}

.hero-text-strip h2 {
    font-size: 1.4rem; /* Ridotto da 1.8rem */
    margin: 0 0 2px 0;
    font-weight: bold;
}

.hero-text-strip p {
    font-size: 1rem; /* Ridotto da 1.2rem */
    margin: 0;
}

.hero-image-only {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    border-top: 1px solid var(--primary-color); /* Bordo marrone di giunzione */
}

.section-box { margin: 20px 0; }

.showcase-text p {
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: center;
    font-size: 0.95rem;
}

/* Componenti con sfondo e bordo a tema Casa Bellavista */
.amenity-card, .room-section, .calendar-box {
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
}

.amenity-card {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-text-strip h2 { font-size: 1.1rem; }
    .hero-text-strip p { font-size: 0.9rem; }
    .hero-image-only { height: 35vh; }
}

.page-intro {
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.room-section { 
    margin-bottom: 2.5rem; 
    padding: 15px 20px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: var(--primary-color);
}

.page-intro h1 { margin: 0 0 15px 0; }
.page-intro p { 
    line-height: 1.7; 
    margin-bottom: 0;
    text-align: justify;
}

.room-header { 
    margin-top: 0;
    margin-bottom: 1rem; 
    padding-bottom: 0.5rem; 
    color: var(--primary-color); 
}

.room-desc { 
    margin-bottom: 1.5rem; 
    line-height: 1.6; 
    color: var(--primary-color); 
    font-weight: 500; 
    text-align: justify;
}

.features-list { 
    list-style: none; 
    padding: 0; 
    margin-bottom: 1.5rem; 
}

.features-list li { 
    margin-bottom: 0.5rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--primary-color); 
}

.features-list li::before { 
    content: "•"; 
    color: #FFD700; 
    font-weight: bold; 
}

.photo-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
    gap: 10px; 
    margin-bottom: 15px; 
}

.photo-grid img { 
    width: 100%; 
    height: 90px; 
    object-fit: cover; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: 0.3s; 
    border: 2px solid transparent; 
}

.photo-grid img:hover { transform: scale(1.05); }

.photo-grid img.active { 
    border-color: var(--accent-green); 
    box-shadow: 0 0 8px rgba(163, 193, 106, 0.5); 
}

.main-photo-viewer { 
    width: fit-content; 
    max-width: 100%; 
    margin: 0 auto 20px auto; 
    border: 1px solid var(--primary-color); 
    border-radius: 8px; 
    overflow: hidden; 
    display: none; 
    background: transparent; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

.main-photo-viewer img { 
    display: block; 
    max-width: 100%; 
    max-height: 75vh; 
    object-fit: contain; 
}

/* =========================================
   8. COMPONENTI CONDIVISI (OTTIMIZZAZIONE)
   ========================================= */
.card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.status-ok { color: var(--success-color); font-weight: bold; }

/* Uniformazione Input & Form */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: bold; font-size: 0.85em; margin-bottom: 5px; color: var(--primary-color); }
.form-group input, .form-group select, .contact-form-box select, .contact-form-box textarea { 
    width: 100%; padding: 12px; border: 1px solid var(--border-default); border-radius: 6px; 
    box-sizing: border-box; font-size: 16px; transition: border 0.3s; 
    background-color: #fff !important; 
}
.form-group input.invalid, .form-group select.invalid, .btn-custom-file.invalid, .contact-form-box input.invalid { 
    border: 2px solid var(--error-color) !important; background-color: var(--error-bg) !important; 
}

/* Uniformazione Bottoni (Layout identico, CSS centralizzato) */
.btn-submit, .btn-home, .main-btn {
    display: inline-block; width: 100%; padding: 14px; background: var(--primary-color); color: white; border: none; 
    cursor: pointer; font-weight: bold; border-radius: 6px; font-size: 1.1em; text-align: center; 
    text-decoration: none; text-transform: uppercase; transition: background 0.3s;
}
.btn-submit:hover, .btn-home:hover, .main-btn:hover { background: var(--primary-hover); }
.btn-submit:disabled, .main-btn:disabled { background: #ccc; cursor: not-allowed; }

/* =========================================
   9. STILI SPECIFICI PER PAGINA
   ========================================= */

/* Page: 404 */
.error-container { text-align: center; padding: 60px 20px; font-family: sans-serif; }
.error-code { font-size: 8rem; font-weight: bold; color: var(--primary-color); margin: 0; line-height: 1; }
.error-message { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 30px; min-height: 1.6em; }

/* Page: Check-in Online */
.checkin-container { padding: 15px; max-width: 600px; margin: auto; font-family: sans-serif; background: #fff; }
.ospite-block { border: 1px solid var(--border-default); padding: 15px; border-radius: 8px; margin-bottom: 25px; background: #fdfdfd; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.row { display: flex; gap: 10px; }
.row div { flex: 1; }
.btn-add { background: var(--text-muted); color: white; border: none; padding: 14px; width: 100%; border-radius: 6px; cursor: pointer; margin-bottom: 20px; font-weight: bold; }
.doc-section { border: 1px dashed var(--border-default); padding: 12px; border-radius: 6px; margin-top: 15px; background: #fff9e6; }
.privacy-disclaimer { font-size: 0.85em; color: #444; background: #f4f4f4; padding: 12px; border-radius: 6px; margin: 20px 0; border-left: 4px solid var(--primary-color); line-height: 1.4; }
.summary-guest-box { background: #f9f9f9; padding: 12px; border-radius: 8px; margin-bottom: 15px; border: 1px solid #ddd; font-size: 0.85em; }
.summary-row { margin-bottom: 6px; display: flex; gap: 15px; border-bottom: 1px solid #eee; padding-bottom: 2px; }
.summary-item { flex: 1; display: flex; justify-content: space-between; }
.summary-label { font-weight: bold; color: var(--text-muted); }
.summary-val { color: #000; font-weight: 500; }
.btn-modifica { background: #95a5a6; color: white; border: none; padding: 18px; width: 100%; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 1.1em; }
.avviso-riepilogo-box { font-size: 0.85em; color: var(--primary-color); background: #fff9e6; border: 1px solid #ffeeba; padding: 12px; border-radius: 6px; margin-bottom: 15px; line-height: 1.4; }
.foto-prev { width: 100%; margin-top: 10px; border-radius: 5px; border: 1px solid #ddd; }
.btn-remove-foto { background: var(--error-color); color: white; border: none; padding: 5px 10px; border-radius: 4px; font-size: 12px; cursor: pointer; margin-top: 5px; }
#error-summary { color: var(--error-color); background: var(--error-bg); padding: 12px; border-radius: 6px; border: 1px solid var(--error-color); margin-bottom: 15px; display: none; font-size: 0.9em; font-weight: bold; text-align: center; }

/* Page: Disponibilità & Calendario */
.dispo-container { max-width: 900px; margin: 20px auto; padding: 15px; }
.calendar-box { padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin: 0 auto 10px auto; width: 100%; max-width: 550px; box-sizing: border-box; }
.calendar-multi-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.month-wrapper { flex: 1; min-width: 280px; max-width: 320px; }
.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; max-width: 550px; margin-left: auto; margin-right: auto; }
.calendar-nav h3 { margin: 0; color: var(--primary-color); text-transform: capitalize; font-family: serif; font-size: 1.5rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.day-name { text-align: center; font-weight: bold; font-size: 0.8em; color: var(--text-muted); padding-bottom: 10px; }
.day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9em; transition: 0.2s; border-radius: 4px; }
.day:not(.busy):not(.empty) { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.day:not(.busy):not(.empty):hover { background: #c3e6cb; }
.day.empty { cursor: default; border: none; }
.day.busy { background: #f8d7da !important; color: #721c24 !important; border: 1px solid #f5c6cb !important; cursor: not-allowed; text-decoration: line-through; }
.day.past { background: #e9ecef !important; color: #6c757d !important; border: 1px solid #dee2e6 !important; cursor: not-allowed; text-decoration: none !important; }
.day.selected { background: var(--primary-color) !important; color: white !important; font-weight: bold !important; border-color: var(--primary-color) !important; }
.day.in-range { background: #fff3cd !important; border-color: #ffeeba !important; color: #856404 !important; }
.day.today { border: 2px solid #FFD700; font-weight: bold; }
.month-name { text-align: center; color: var(--primary-color); font-weight: bold; margin-bottom: 10px; text-transform: capitalize; }
.legend { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; font-size: 0.85em; }
.legend-item { display: flex; align-items: center; gap: 5px; }
.box-av { width: 15px; height: 15px; background: #d4edda; border: 1px solid #c3e6cb; }
.box-bs { width: 15px; height: 15px; background: #f8d7da; border: 1px solid #f5c6cb; }
.box-sl { width: 15px; height: 15px; background: var(--primary-color); border: 1px solid var(--primary-color); }
.contact-form-box { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin: 20px auto 40px auto; max-width: 550px; }
.contact-form-box input:focus, .contact-form-box select:focus, .contact-form-box textarea:focus { border-color: var(--primary-color); outline: none; }
.err-msg { display: none; color: red; margin-top: 10px; text-align: center; font-weight: bold; }

/* Page: Gestione Admin */
.admin-container { max-width: 1100px; margin: 20px auto; padding: 20px; background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.admin-container h2 { text-align: center !important; color: var(--primary-color); margin-bottom: 25px; width: 100%; }
.admin-container table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.admin-container th, .admin-container td { padding: 12px; text-align: left; border-bottom: 1px solid #eee; font-size: 0.9em; }
.admin-container th { background: #f8f8f8; color: var(--primary-color); }
.badge { padding: 4px 8px; border-radius: 10px; font-size: 0.75em; font-weight: bold; color: white; }
.bg-airbnb { background: #f85448; }
.bg-booking { background: #418fda; }
.bg-vrbo { background: #bba3f5; }
.bg-extra { background: #888; }
.btn-action { cursor: pointer; border: none; padding: 5px 10px; border-radius: 4px; font-size: 0.8em; }
.btn-view { background: #28a745; color: white; }
.detail-card { border-left: 5px solid var(--primary-color); background: #fffaf0; padding: 15px; margin-bottom: 15px; border-radius: 4px; }
.spinner-overlay { text-align: center; padding: 40px; }
.btn-refresh { background: #17a2b8; color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; }
.visits-filter-btn { background: #666; color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; margin-right: 5px; }
.visits-filter-btn.active { background: var(--primary-color); }
.daily-section { border: 1px solid #ddd; border-radius: 8px; padding: 20px; margin-bottom: 30px; background: #fdfdfd; }
.daily-section h3 { margin-top: 0; color: var(--primary-color); border: none; }
.stats-summary-box { background: #f8f8f8; border-radius: 6px; border-left: 4px solid var(--primary-color); padding: 15px; margin-bottom: 15px; }
.stat-sub-row { display: block; }
.stat-separator { border-top: 2px solid var(--primary-color); margin: 15px 0; }
.stat-label { font-weight: bold; color: var(--primary-color); text-transform: uppercase; font-size: 0.75em; margin-bottom: 8px; display: block; }
.stat-group { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }
.stat-pill { background: white; padding: 4px 10px; border-radius: 20px; border: 1px solid #ddd; font-size: 0.85em; display: flex; align-items: center; gap: 6px; }
.journey-step { display: inline-block; padding: 6px 12px; background: white; border: 1px solid var(--primary-color); border-radius: 6px; margin: 5px 0; font-family: monospace; font-size: 13px; color: var(--primary-color); box-shadow: 2px 2px 0px rgba(74,4,4,0.1); }
.journey-arrow { margin: 0 10px; color: #a3c16a; font-weight: bold; font-size: 16px; }
.page-stat-item { display: flex; align-items: center; gap: 5px; background: #fff; padding: 3px 8px; border-radius: 4px; border: 1px solid #eee; }

/* Classi di layout per Dashboard Admin */
.tabs-container { margin-bottom: 20px; display: flex; gap: 10px; justify-content: center; }
.filter-bar-center { margin-bottom: 20px; text-align: center; }
.detail-header { margin-bottom: 20px; border-bottom: 2px solid var(--primary-color); padding-bottom: 10px; }
.detail-title { text-align: left; margin: 0; color: var(--primary-color); }
.detail-date { margin: 5px 0; font-size: 1.1em; }
.detail-id { color: var(--text-muted); }

.guest-type-header { font-weight: bold; color: var(--primary-color); margin-bottom: 8px; border-bottom: 1px solid #ddd; }
.guest-photo-container { margin-top: 10px; text-align: center; }
.guest-photo-img { max-width: 100%; max-height: 250px; border-radius: 5px; border: 1px solid #ddd; cursor: pointer; }

.quietanze-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary-color); padding-bottom: 10px; margin-bottom: 20px; }
.quietanze-title { margin: 0; }
.quietanze-table { width: 100%; font-size: 12px; border-collapse: collapse; }
.quietanze-table thead tr { background: #f2f2f2; }
.quietanze-table th, .quietanze-table td { padding: 8px; border-bottom: 1px solid #eee; }
.quietanze-table td.center { text-align: center; }
.quietanze-table td.total { font-weight: bold; color: var(--primary-color); }

.actions-row { margin-top: 20px; display: flex; gap: 10px; justify-content: center; }
.actions-row-right { margin-top: 20px; text-align: right; }

.btn-danger { background: var(--error-color) !important; color: white; padding: 10px 20px; border-radius: 4px; font-weight: bold; width: auto; border: none; cursor: pointer; }
.btn-primary-action { background: #0275d8 !important; color: white; padding: 10px 20px; border-radius: 4px; font-weight: bold; width: auto; border: none; cursor: pointer; }
.btn-secondary { background: var(--text-muted) !important; color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; }

.stats-day-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary-color); margin-bottom: 15px; }
.stats-day-title { margin: 0; padding: 10px 0; }
.stats-flex-row { display: flex; gap: 20px; flex-wrap: wrap; }
.stats-column { flex: 1; min-width: 200px; }
.stats-small-label { font-size: 0.85em; color: var(--text-muted); margin-bottom: 4px; }
.stats-footer-note { margin-top: 10px; }
.stats-detail-box { margin-top: 20px; }
.pages-stats-box { background: #fff; padding: 10px; border-radius: 6px; border: 1px solid #eee; margin-bottom: 20px; }
.page-stat-row-full { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.page-stat-info-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.page-name { font-weight: bold; color: #333; }
.page-total { font-weight: bold; color: var(--primary-color); }
.breakdown-container { font-size: 0.85em; display: flex; flex-direction: column; gap: 4px; }
.breakdown-item { display: flex; align-items: center; }
.breakdown-label { min-width: 100px; color: var(--text-muted); }
.langs-inline { display: inline-flex; align-items: center; gap: 3px; margin-right: 12px; }
.journey-box { margin-bottom: 15px; padding: 10px; border: 1px solid #eee; border-radius: 8px; display: flex; align-items: center; gap: 15px; }
.journey-sid { min-width: 100px; font-size: 11px; color: var(--text-muted); }
.journey-steps-container { flex: 1; }

/* Page: Guide Siena */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 20px; max-width: 1200px; margin: 0 auto; }
.guide-grid .card { cursor: pointer; transition: transform 0.1s; border-style: solid; border-width: 1px 1px 1px 8px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.guide-grid .card:active { transform: scale(0.98); }
.guide-grid .card h3 { margin: 0 0 5px 0; color: #4A0404; font-size: 1.2em; font-family: 'Playfair Display', serif; }
.guide-grid .card p { margin: 0; color: #666; font-size: 0.95em; line-height: 1.4; }

/* Page: Privacy */
.privacy-content p { margin-bottom: 10px; line-height: 1.6; }
.privacy-content ul { margin-bottom: 15px; padding-left: 20px; }
.privacy-content li { margin-bottom: 8px; }
.fixed-privacy-header { position: fixed; top: 0; left: 0; width: 100%; height: 60px; background: var(--primary-color); display: flex; align-items: center; z-index: 10002; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.close-btn { background: none; border: none; color: white; font-size: 30px; font-weight: bold; padding: 0 20px; cursor: pointer; line-height: 60px; }
.bar-title { color: white; font-family: serif; font-size: 1.1rem; text-transform: uppercase; }

/* Media Queries centralizzate per Mobile */
@media (max-width: 600px) {
    .calendar-box { padding: 10px; max-width: 100%; }
    .month-wrapper { max-width: 100%; }
    .guide-grid { grid-template-columns: 1fr; padding: 15px; }
    .admin-container { padding: 10px; margin: 10px; }
}