.spiffy-calendar-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  gap: 12px;
}

.calendar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2em;
  color: #004080;
}

.calendar-controls {
  display: flex;
  gap: 10px;
}

.calendar-controls button {
  background-color: #004080;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.calendar-controls button:hover {
  background-color: #0066cc;
}

.calendar-controls svg {
  stroke: white;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.calendar-controls button:hover svg {
  stroke: #ffcc00;
}
