body {
  padding: 60px 1em 0;
}

.text-titlecase {
  text-transform: capitalize;
}
/* This code handles CSS for the calendar, accordion-like class info, and registration box. */
#calendar {
  table {
    border: 2px solid #ddd;
    font-weight: normal;
    font-size: 90%;
    background-color: white;
    margin-bottom: 15px;
    border-collapse: collapse;
    width: 100%;
    text-align: center;
  }
  th {
    text-align: center;
  }
  th,
  td {
    border-top: 1px solid #ddd;
    border: 1px solid #ddd;
    padding: 5px;
  }
  th[colspan] {
    font-size: 120%;
  }

  td:not(:first-child) {
    width: 19%;
  }

  td.session {
    cursor: pointer;
  }
  td.session[selected] {
    background-color: rgb(100, 242, 121); /* a nice goldenrod shade */
  }
  td.session:hover {
    background-color: #f2c464; /* a nice goldenrod shade */
  }
  td.drop-in {
    font-style: italic;
  }
  .lunch {
    background-color: #eee;
  }
  .void {
    background-color: #eee;
    font-weight: bold;
  }
}
dd {
    margin-left: 1em;
    margin-bottom: 0.5rem;
}
.event-description>p {
    margin-bottom: .3rem;
}