/* Solo afecta al bloque de calendario de la página de inicio. */
.calendario-home {
  width: 100%;
  min-width: 0;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid #dfe0e3;
  border-radius: 7px;
  background: #fffdf8;
  box-shadow: 0 2px 5px rgba(27, 38, 52, .15);
  color: #354052;
  font-family: Arial, Helvetica, sans-serif;
}
.calendario-home__cabecera { padding: 11px 12px 12px; background: #fff; }
.calendario-home__cabecera h2 { margin: 0; padding-bottom: 8px; border-bottom: 1px solid #e9e5df; color: #27394a; font: 700 13px/1.35 Arial, Helvetica, sans-serif; text-align: center; text-transform: uppercase; }
.calendario-home__periodo { margin: 9px 0 2px; color: #bd242b; font: 500 15px/1.35 Arial, Helvetica, sans-serif; text-align: center; }
.calendario-home__estado { margin: 0; font: 13px/1.4 Arial, Helvetica, sans-serif; }
.calendario-home__estado:empty { display: none; }
.calendario-home__estado:not(:empty):not(.calendario-home__estado--error) { display: flex; align-items: center; gap: 8px; margin: 0 10px 8px; padding: 8px 9px; border: 1px solid #ead5d6; border-left: 3px solid #bd242b; border-radius: 4px; background: #fff8f8; color: #842027; font-weight: 600; }
.calendario-home__estado:not(:empty):not(.calendario-home__estado--error)::before { content: ''; box-sizing: border-box; width: 15px; height: 15px; flex: 0 0 15px; border: 2px solid #e7b8ba; border-top-color: #bd242b; border-radius: 50%; animation: calendario-home-giro 800ms linear infinite; }
.calendario-home__estado--error { margin: 0 10px 8px; padding: 8px 9px; border: 1px solid #e7c3c5; border-radius: 4px; background: #fff5f5; color: #9f1b22; }
@keyframes calendario-home-giro { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .calendario-home__estado::before { animation: none !important; } }

#calendario-home-lista { width: 100%; min-width: 0; --fc-border-color: #e0e2e7; --fc-list-event-hover-bg-color: #fff7f0; }
#calendario-home-lista .fc-view { margin-top: 0 !important; }
#calendario-home-lista .fc-list { border: 0; border-top: 1px solid #e0e2e7; border-radius: 0; }
#calendario-home-lista .fc-list-day-cushion { padding: 8px 11px; background: #f2f4f7; color: #bd242b; font-size: 12px; font-weight: 700; }
#calendario-home-lista .fc-list-day-text, #calendario-home-lista .fc-list-day-side-text { color: #bd242b; text-decoration: none; }
#calendario-home-lista .fc-list-event td { padding: 8px 5px; background: #fff; border-color: #e0e2e7; vertical-align: top; }
/* Las franjas solo afectan a eventos: las cabeceras de día conservan su gris. */
#calendario-home-lista .fc-list-event:nth-of-type(odd) td { background: #faf8f3; }
#calendario-home-lista .fc-list-event:hover td,
#calendario-home-lista .fc-list-event:nth-of-type(odd):hover td { background: #f3eee6; }
#calendario-home-lista .fc-list-event-time { width: 58px; white-space: nowrap; color: #354052; font-size: 11px; }
#calendario-home-lista .fc-list-event-graphic { width: 20px; padding-left: 8px !important; padding-right: 2px !important; }
#calendario-home-lista .fc-list-event-title { padding-left: 4px !important; color: #394251; font-size: 11px; line-height: 1.35; overflow-wrap: anywhere; cursor: pointer; }
#calendario-home-lista .fc-list-empty { background: #fffaf0; color: #667384; font-size: 13px; }
#calendario-home-lista .fc-list-empty-cushion { box-sizing: border-box; max-width: 250px; padding: 0 18px; margin: 65px auto; text-align: center; line-height: 1.5; }
#calendario-home-lista.calendario-home-lista--cargando .fc-list-empty { visibility: hidden; }
#calendario-home-lista .fc-scroller { overflow-x: hidden !important; }
#calendario-home-lista .fc-list-event:focus-visible { outline: 3px solid #f5b8bb; outline-offset: -3px; }
