select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 0.375rem;
  margin-bottom: 1rem;
  resize: vertical;
}

.optionSelect {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/*Schedule section*/
.schedule-heading {
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.schedule-section {
  margin-bottom: 4rem;
  padding: 2rem 4rem;
}

.schedule-section .event-header {
  /* margin-top: 30px; */
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .optionSelect {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .schedule-section {
    padding: 2rem;
  }
}
