/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Stili personalizzati per il calendario */
.simple-calendar {
  margin-bottom: 1.5rem;
}

.simple-calendar .calendar-heading {
  margin-bottom: 1rem;
  text-align: center;
}

.simple-calendar .calendar-heading a {
  color: #2563eb;
  text-decoration: none;
}

.simple-calendar .calendar-heading a:hover {
  color: #1e40af;
}

.simple-calendar .calendar-heading .calendar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 1rem;
}

.simple-calendar .table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.simple-calendar .day {
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  height: 6rem;
  vertical-align: top;
}

.simple-calendar .wday-0,
.simple-calendar .wday-6 {
  background-color: #f9fafb;
}

.simple-calendar .today {
  background-color: #eff6ff;
}

.simple-calendar .prev-month,
.simple-calendar .next-month {
  background-color: #f3f4f6;
  color: #9ca3af;
}

.calendar-event {
  cursor: pointer;
}

.calendar-day {
  height: 6rem;
  overflow-y: auto;
}
