.calendar-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.calendar-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.nav-button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-button:hover {
  background: var(--primary-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.calendar-grid > div {
  background: #fff;
  padding: 1rem;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calendar-grid > div:nth-child(-n + 7) {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.event-schedule {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.event-schedule li {
  background: var(--surface);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-label {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}
