.gigs-container {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.gigs-container h1{
  background: rgba(0,0,30,0.9);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  color: white;
  display: inline-block;
  padding: 0.3rem 1rem;
}

.gig-card {
  background: white;
  padding: 1rem;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gig-card p{
  margin: 0;
}

#calendar-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.2rem;
}

#calendar-wrapper {
  max-width: 350px;
  margin: 0 auto;
  padding: 0.5rem;
}

#calendar,
#weekday-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

#weekday-labels div {
  color: white; /* or another bright color */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-weight: bold;
  font-size: 0.75rem;
  text-align: center;
}

#calendar .calendar-day {
  aspect-ratio: 1 / 1;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #eee;
  cursor: pointer;
  min-height: 30px;
}

.calendar-day.has-event {
  background: var(--bad-actors-orange) !important;
  color: white;
  font-weight: bold;
}

.calendar-day.has-event:hover {
  background: #cc5200 !important; /* slightly darker than --bad-actors-orange */
  transform: scale(1.1);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 1; /* to ensure it sits above adjacent grid items while scaled */
}

.calendar-day.has-event:focus {
  outline: 2px solid white;
  outline-offset: -2px;
  transform: scale(1.1);
  background: #cc5200 !important;
}

.calendar-day.empty {
  visibility: hidden;
}

.calendar-day.selected {
  outline: 3px solid white;
  outline-offset: -3px;
  box-shadow: 0 0 10px white;
}

#month-year {
  font-size: 1.4rem;
  font-weight: bold;
  color: white; /* or a bright contrasting color */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}



@media (max-width: 480px) {
  #calendar-wrapper {
    max-width: 90vw;
  }

  .calendar-day,
  #weekday-labels div {
    font-size: 0.65rem;
    padding: 0.3rem;
  }
}