/* * {
  box-sizing: border-box;
} */

.calendar-grid {
  margin: 1em auto;
  width: 100%;
  height: 60%;
  grid-gap: 10px 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 3em 2em;
  grid-auto-rows: 1fr;
  border-top: 4px solid palegoldenrod;
  padding-top: 1em;
}

.calendar-day {
  padding: .4em;
  height: 100%;
  min-height: 4em;
  width: 100%;
  background: palegoldenrod;
  border-radius: 5px;
  color: black;
}

.showscore {
  font-size: min(1.9vw, 12px);
}

.current-day {
  background: lightskyblue;
  border: 4px;
  border-style: solid;
  border-color: rgb(42, 42, 160);
}

.schedule-day {
  background: rgba(1, 231, 97, 0.74);
}

.nonschedule-day {
  background: rgba(243, 61, 61, 0.74);
}

.first-day {
  grid-column-start: 4;
}

.calendar-dayname {
  padding: .4em;
  text-align: center;
  background: goldenrod;
  color: palegoldenrod;
}

.calendar-title {
  text-align: center;
  grid-column: 2 / -2;
  font-size: 1.5em;
  color: #f4dbaa;
}

.calendar-nav a {
  display: block;
  width: 100%;
  height: 100%;
  color: #f4dbaa;
  font-size: 2em;
  cursor: pointer;
}

.calendar-nav__right {
  text-align: right;
  color: #f4dbaa;
}

#statstable {
  border-collapse: separate;
}

.jumbotron_example > div {
  text-align: center;
}

#numweeks {
  width: 100%;
}

#new_locations_text_area {
  width: 100%;
  font-size: 14px;
}

jumbotron.style {
  padding: 0px;
}

