/* Caja general */
.fc {
  font-family: 'Segoe UI', sans-serif;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #fff;
}

/* Cabecera (barra superior) */
.fc-toolbar {
  background: linear-gradient(90deg, #9F3232, #E3A6A6);
  color: white;
  padding: 12px;
}

.fc-toolbar-title {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Botones de navegación */
.fc-button {
  border-radius: 8px !important;
  border: none !important;
  background: white !important;
  color: #9F3232 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease-in-out;
}

.fc-button:hover {
  background: #9F3232 !important;
  color: white !important;
}

/* Días */
.fc-daygrid-day {
  border: 1px solid #9F3232;
  background: #fafafa;
}

.fc-daygrid-day-top {
  font-weight: 600;
  color: #555;
}

/* Eventos */
.fc-event {
  border-radius: 8px;
  padding: 3px 6px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #4facfe !important;
  color: white !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-event:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
