html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: SFProText,-apple-system,Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #3a3a3a;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

/* Add some styling for the left and right sides */
.right-side {
  float: right;
  width: calc(20% - 16px);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
  padding-bottom: 56px;
}

.left-side {
  float: left;
  width: calc(80% - 16px);
  margin-left: 10px;
  margin-top: 30px;
  padding-bottom: 56px;
}

.word {
  display: inline-block;
  white-space: pre-wrap;
  /*padding-right: 8px;
  padding-left: 8px;
  margin-left: 5px;
  max-width: 728px;*/
}

/* Add styling for the word hover effect */
.word:hover {
  background-color: #5f80f5;
  color: #ffffff;
  border-radius: 10px;
}

/* Add styling for the words with a timestamp on the right side */
.word.grey {
  color: #e5e9fa;
}

/* Add styling for the start times */
.start-time {
  float:left;
  display: inline-block;
  white-space: pre-wrap;
  color: #5f80f5;
  width: 80px;
  font-family: Mono,sans-serif;
  text-align: right;
}

.start-time:hover {
  cursor: pointer;
  text-decoration: underline;
}

.switcher{
    float:right;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 5px;
    color: #5f80f5;
}

.switcher:hover {
  cursor: pointer;
  background-color: #5f80f5;
  color: #ffffff;
  border-radius: 10px;
}

.time-switcher-container {
  display: flex;
  align-items: start;
}

.row {
  display: grid;
  grid-template-columns: 100px 1fr;
  /* 80px for start-time and 1fr for text */
}

.row-words {
  margin-left: 5px;
  max-width: 728px;
}

.json-input-header {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  background-color: #fff;
  align-items: center;
}

.audio-player {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
  height: 56px;
  align-items: center;
}

#audioPlayer {
  width: 80%;
  padding-right: 10px;
  padding-left: 10px;
}

#select-audio-button {
 width: 20%;
 height: 30px;
 margin-right: 10px;
}

#drop_zone {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    font-size: 2em;
    align-items: center;
    color: #CCC;
    text-align: center;
    background-color: #fff;
    z-index: 2;
}