/*
 * Dashboard theme tokens, gradients, and shared UI primitives
 * now live in app/assets/tailwind/theme.css so that everything
 * is co-located with the Tailwind build. Keep this file around
 * for any plain-CSS overrides that shouldn't go through Tailwind.
 */

@import url("https://cdn.jsdelivr.net/npm/@fullcalendar/core@6.1.10/index.css");
@import url("https://cdn.jsdelivr.net/npm/@fullcalendar/daygrid@6.1.10/index.css");
@import url("https://cdn.jsdelivr.net/npm/@fullcalendar/timegrid@6.1.10/index.css");

/* Weather forecast in schedule calendar day headers */
.ff-day-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 0;
}

.ff-day-header__label {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #404040;
}

.ff-day-header__weather {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: default;
}

.ff-day-header__icon svg {
  width: 16px;
  height: 16px;
}

.ff-day-header__temps {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #737373;
  white-space: nowrap;
}

/* Hourly weather background event badges */
.ff-weather-badge {
  position: absolute;
  top: 1px;
  left: 2px;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.fc-bg-event {
  border: none !important;
  opacity: 1 !important;
}
