:root {
  color-scheme: light dark;
}
.hide {
  display: none;
}

/* unvisited link */
a:link {
  color: blue;
}

.not-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* visited link */
a:visited {
  color: blue;
}

.wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 800px) minmax(0, 1fr);
}

.container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 5px;
  grid-column: 2;
}

input[type=button],
input[type=submit],
input[type=reset] {
  background-color: #3B82F6;
  border: none;
  border-radius: 16px;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  text-size: 200px;
}

.board-name {
  grid-column: 2;
  font-weight: bold;
  font-size: 200%;
  text-align: left;
  padding-left: 5px;
}

.meeting_count {
  grid-column: 3;
  text-align: right;
  color: light-dark( rgb(60, 60, 60), whitesmoke);
}

.search_box {
  border-radius: 16px;
  border: 3px solid #3B82F6;
  font-size: 28px;
}

span.timestamp {
  font-family: monospace;
  margin-right: 10px;
  color: gray;
}

.segment-text {

}

.segment p {
  transition-duration: .25s;
}

.bold {
  font-weight: bold;
  border-radius: 5px;
  transition-duration: .25s;
}

#warning {
  font-weight: bold;
  font-style: italic;
}

#text {
  overflow: auto;
}

.segment {
  scroll-margin-top: 200px;
  cursor: pointer;
}

.segment b {
  padding-right: 10px;
  font-family: monospace;
  cursor: pointer;
}

#audio-parent {
  bottom: auto;
  top: 0;
  background-color: light-dark( white, rgb(60,60,60));
  width: 100%
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 15px;
}

.icon-link {
  grid-column: 1;
}

#speedcontrolcontainer {
  width: 50%;
  margin: 0 auto;
}

#speedcontrol {
  width: 100%;
}

#speedcontrolcontainer .speedlabel {
  display: inline-block;
  width: 11.11%;
  text-align: center;
}

#speedcontrolcontainer {
  position: relative;
  height: 28px;
  clear: both;
}

#speedcontrolbackground,
#speedcontrol {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 28px;
}

#speedcontrolbackground {
  z-index: 2;
  pointer-events: none;
  margin-top: 2px;
}

#speedcontrol {
  -webkit-appearance: none;
  z-index: 1;
  cursor: pointer;
  height: 28px;
  border: 0;
  background-color: transparent;
}

#speedcontrol:focus {
  outline: none;
}

#speedcontrol::-webkit-slider-runnable-track {
  width: 100%;
  height: 20px;
  background-color: #EBF3FE;
  border-radius: 9px;
}

#speedcontrol::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 20px;
  width: 11%;
  border-radius: 14px;
  background: #3B82F6;
}

#speedcontrol::-moz-range-track {
  width: 100%;
  height: 20px;
  background-color: #EBF3FE;
  border-radius: 9px;
  border: none;
}

#speedcontrol::-moz-range-thumb {
  border: none;
  height: 20px;
  width: 11%;
  border-radius: 14px;
  background: #3B82F6;
}


a:link {
  text-decoration: none;
  color: light-dark(#3B82F6, #bbd6fc);
}

a:visited {
  text-decoration: none;
  color: light-dark(#3B82F6, #bbd6fc);
}

a:hover {
  text-decoration: none;
  color: light-dark(#3B82F6, #bbd6fc);
}

a:active {
  text-decoration: none;
  color: light-dark(#3B82F6, #bbd6fc);
}

body {
  background-color: light-dark(whitesmoke, rgb(60, 60, 60));
  color: light-dark(rgb(60, 60, 60), whitesmoke);
  font-family: ui-rounded, "SF Pro Rounded", system-ui, san-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

audio {
  width: 100%;
  min-height: 15px;
  display: block;
}

#overview {
  width: 100%;
  height: 100px;
}

.board {
  background: light-dark(#bbd6fc, #3B82F6);
  display: grid;
  grid-template-columns: 1fr minmax(240px, 10fr) 2fr;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}

@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .meeting_count {
    display: none;
  }
  .board-name {
    grid-column: 2/4;
    font-size: 150%;
  }
 }
@media (min-width:480px)  { 
}
@media (min-width:600px)  { 
  .meeting_count {
    display: inherit;
  }
  .board-name {
    grid-column: 2;
    font-size: 200%;
  }
}
@media (min-width:801px)  { 
  .board {
    border-radius: 25px;
  }
 }
@media (min-width:1025px) { 

 }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }

