/* Estilos específicos del calendario (compartidos entre main y Calendario.html)
	Se usan variables CSS definidas en menu.css / admin.css para soportar light/dark */
.cal-wrap{ max-width:900px;margin:28px auto;padding:12px }
.cal-section{ margin-bottom:18px }
.cal-item .meta{ font-size:13px; color:var(--muted, #666) }

.cal-placeholder{ color:var(--muted, #666); padding:12px }

/* Grid and cell styles moved from Calendario.html */
.cal-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap:6px }
.cal-cell{ min-height:80px; background:var(--card-bg, #fff); border:1px solid var(--border, #eee); padding:8px; border-radius:6px }
.cal-cell .date{ font-size:12px; color:var(--muted, #666); margin-bottom:6px }
.event{ background: linear-gradient(90deg, var(--accent, #6fc3ff), var(--accent-2, #8be5d8)); padding:4px 6px; border-radius:4px; font-size:13px; margin-bottom:6px; color:var(--primary-contrast, #083048) }
