html{
  background-color: #fcfcfc;
  height: 100vh;
}

body{
  margin: 0;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  color: #292826;
}

.header, .footer{
  padding: 0.25rem;
}

.header {
  margin: 0.5rem 0 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  align-items: center;
}

.header p{
  margin: 0;
}

#title{
  margin: 0;
  font-size: 26px;
  font-weight: lighter;
}

#info{
  margin: 0 1rem;
  grid-column-start: 1;
  grid-column-end: span 2;
  justify-self: left;
  font-weight: lighter;
  font-size: 0.9rem;
  line-height: 120%;
  text-align: justify;
}

.footer {
  margin: 0 0.75rem;
  display: block;
}

.footer p {
  margin: 0.15rem 0;
  font-size: 0.75rem;
  font-weight: lighter;
  line-height: 120%;
}

button{
  cursor: pointer;
  background-color: #fcfcfc;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: normal;
  border-radius: 20px;
  border: 1px solid #292826;
}

.button-clicked{
  color: #fcfcfc;
  background-color: #292826;
}

.buttons{
  margin-left: 40px;
  padding: 10px;
}

h2{
  font-size: 1rem;
  margin: auto;
  margin-left: 30px;
  font-weight: lighter;
}

.controls, .container{
  font-weight: lighter;
}

.controls {
  justify-self: end;
  font-size: 0.8rem;
}

.container{
  padding-bottom: 0.5rem;
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  justify-content: left;
  overflow: hidden;
  font-size: 0.75rem;
}

.col {
  display: flex;
  flex-direction: column;
}

#column-left{
  float: left;
  width: 30%;
}
#column-right{
  float: right;
  width: 25%;
  overflow: hidden;
}
#column-center{ 
  width: 45%;
}

.col-title {
  margin-left: auto;
  margin-bottom: 0.85rem;
  text-align: center;
}

.col-content {
  flex: 1 1 auto;
}

#list-container{
  overflow: auto;
}
.col ol{
  padding-left: 0;
}

.axisColor text{
  fill: #292826;
}

#list{
  font-size: 0.85rem;
}

#list > li{
  line-height: 150%;
  margin: 0.25rem 0 0.5rem 1.85rem;
  opacity: 0.85;
}

#list .selectable{
  display: block;
}

#list .item-meta{
  margin: 0.25rem 0.5rem 0.25rem 0.2rem;
  display: block;
  line-height: 1.05rem;
  font-size: 0.75rem;
}

.item-meta dl{
  margin: 0;
}
.item-meta dd{
  margin-left: 1.75rem;
  text-indent: -1rem;
}

ol::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
ol::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}

#note{
  text-align: center;
  font-size: 0.9rem;
  font-weight: lighter;
}

.axis text {
  font-size: 0.725rem;
}

.axis {
  font-family: sans-serif;
}
.axis.axis-small {
  /*font-size: 0.5rem;*/
}
.axis-left .label-plot {
  text-anchor: end;
}

.selectable {
  cursor: pointer;
}

.path-links {
  fill: none;
  opacity: 0.25;
  stroke-width: 1;
}

.italic {
  font-style: italic;
}
