:root {
  --bs-primary: #78659c;
  --bs-secondary: #dbd6e4;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}

body {
  font-size: 1.65em;
  font-family: 'Calibri light', Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  background-color: #eee;
}

footer {
  border-bottom: 2px solid var(--bs-primary);
  border-top: 2px solid var(--bs-primary);
  padding: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1em;
}

footer div {
  color: var(--bs-primary);
}

footer hr {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary);
  border: none;
  width: 3px;
  height: 100%;
 }



.container .nav-container img {
  max-width: 200px;
}

.container .nav-container ul {
  list-style-type: none;
  padding-left: 0;
}

.container .nav-container ul li {
  text-align: center;
  padding-bottom: 1rem;
  text-decoration: none;
}

.container .nav-container ul li a {
  text-decoration: none;
  color: var(--bs-primary);
}


h1 a.site-title {
  font-size: 1.5em;
}

h2 {
  font-size: 1.25em;
}

.container .content-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;

}

header.site-header {
  color: var(--bs-primary);
}

header.site-header h1 {
  text-align: center;
}

header.site-header h1 a {
  text-decoration: none;
}

div.team-names {
  border-bottom: 2px solid var(--bs-primary);
  border-top: 2px solid var(--bs-primary);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1rem;
}

div.team-names div {
  text-align: left;
}

@media only screen and (min-width: 992px) {
  div.team-names {
    border-bottom: 2px solid var(--bs-primary);
    border-top: 2px solid var(--bs-primary);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
  }

  div.team-names div {
    text-align: center;
  }

  div.team-names:first-child {
    text-align: left;
  }

  div.team-names:last-child {
    text-align: right;
  }
}


.post-content {
  margin: 1rem;
}

.container .content-container footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media only screen and (min-width: 992px) {
  .container .content-container footer {
    flex-direction: row;
  }
  
}

.post-content ul {
  list-style-type: circle;
  list-style-position: outside;
}

.post-content ul li {
  margin-left: 0;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

a:visited {
  color: var(--bs-primary);
  text-decoration: none;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 50%;
}

.menu-icon {
  cursor: hand;
}

div.doc-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  gap: 0.1em;
  flex-shrink: 1;
}

div.doc-list .doc-list-item {
  /*style="flex: 0 1 auto; flex-grow: 0; flex-shrink: 1; flex-basis: auto;" */
  flex-shrink: 1;
}

@media screen and (min-width: 992px) {
  div.doc-list {
    flex-wrap: nowrap;
  }
}

.appointment {
  position: fixed;
  z-index: 20000;
  top: 180px;
  right: 0;
  display: block;
  text-align: center;
  opacity: 0.85;
  font-size: 14px;
  overflow: hidden;
  width: 100px;
  border-radius: 4px 0 0 4px;
  padding: 10px;
  line-height: 1.4;
  background-color: #107ACA;
}

.appointment a {
  color: #ffffff;
  text-decoration: none;
}

.appointment-btn {
  display: block;
  color: #FFFFFF !important;
  text-decoration: none;
  background-color: #107ACA;
}

.appointment-btn a {
  color: #ffffff !important;
}
.appointment-btn a:visited {
  color: #ffffff !important;
}

.site-nav ul {
  margin-top: 2em;
}

.column-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
}

@media screen and (min-width: 992px) {
  .column-content {
    flex-direction: row;
  }
}