.contact-list {
  line-height: initial;
  font-size: 14px;
  page-break-inside: avoid;
}
.contact-list .row {
  border-bottom: 1px solid lightgrey;
  font-family: monospace;
  page-break-after: ;
}
.contact-list .row > div {
  border-left: 1px solid lightgrey;
  padding: 3px 15px;
}
.contact-list .row > div:last-child {
  border-right: 1px solid lightgrey;
}
.committee-chairmen {
  border-left: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  margin-bottom: 1em;
}
.committee-chairmen .row {
  border-bottom: 1px solid lightgrey;
  page-break-after: avoid;
}
.committee-chairmen .row > div:first-child {
  background-color: whitesmoke;
  font-weight: 800;
}
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
  font-size: 14px;
}
.committee-grid > div {
  border: 1px solid lightgrey;
  border-radius: 8px;
  line-height: 20px;
  padding: 15px;
}
.committee-grid .committee-name {
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 0.5em;
}
.redhead {
  background-color: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 2px 1em;
  margin-left: -15px;
  margin-right: -15px;
  page-break-after: avoid;
  page-break-before: auto;
}
.subhead {
  background-color: #E4E4E4;
  font-size: 18px;
  font-weight: 600;
  margin-left: -15px;
  margin-right: -15px;
  padding: 2px 1em;
  page-break-after: avoid;
}
.trackname {
  text-align: center;
  font-size: 16px;
}
.term {
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
}
.desc {
  font-size: 14px;
  font-weight: 100;
}
.bg-red {
  background-color: var(--primary);
  color: white;
}
.printbutton {
  text-align: right;
  font-size: 20px;
  border: 1px solid #E4E4E4;
  padding: 5px;
}
.center-spaced {
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* You can adjust padding or margin if needed */
}
/* Apply styles to the left and right spans */
.info-left {
  margin-right: auto;
}
.info-right {
  margin-left: auto;
}
/* Define styles for printing */
@media print {
  /* Hide unwanted elements when printing */
  header,
  .sidebar,
  footer {
    display: none;
  }
  .contact-list {
    font-size: 16px;
  }
  .contacts-content {
    /* For example, you can set margins, font size, etc. */
  }
  .redhead {
    margin-left: -15px;
    margin-right: -15px;
  }
  .masterpage.col-md-4 {
    display: none;
    width: 0px;
    max-width: 0px;
  }
  .masterpage.col-md-8 {
    width: 100%;
    max-width: 100%;
    flex: initial;
  }
  .printbutton {
    display: none;
  }
}
/*# sourceMappingURL=contacts.css.map */