.schedule {
  margin: 2rem 0;
}

.schedule h2{
  margin-bottom: 2rem;
  font-size: 20px;
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.schedule-tab {
  border: 1px solid #ccc;
  background: #f9f9f9;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.2s;
}

.schedule-tab:hover {
  background: #eee;
}

.schedule-tab.active {
  background: var(--deep-green);
  color: white;
}

.schedule-day {
  display: none;
}

.schedule-day.active {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: 1rem;
  width: 100%;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 16px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #ddd;
  padding: 6px 10px;
  text-align: left;
}

.schedule h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.6rem;
  color: #333;
}

.schedule-table .time-column-value{
  width: 150px;
  min-width: max-content;
  color: var(--deep-green);
  padding: 4px;
  font-size: 15px;
  white-space: nowrap;
  text-align: center;
}

.event-column-value{
  font-size: 15px;
  background-color: var(--colors);
}

.day-inner .location-title{
  /*background-color: var(--green);*/
  /*color: #fff;*/
  font-weight: 700;
  padding: 16px;
}

.green_event {
  color: var(--deep-green);
}

@media (max-width: 576px) {
  .schedule-tabs{
    justify-content: space-evenly;
  }
  .schedule-table .time-column-value{
    width: 130px;
  }
}
