#sds-display {
  /* background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(21, 11, 32, 1) 100%
  ); */
  color: var(--color-red);

  display: grid;
  grid-template-areas:
    "title time output"
    "seeker time output";
  grid-template-columns: 10fr 1.5fr 1.5fr;
  padding: 15px 10px 15px 30px;

  /* cursor: move; */

  opacity: 0.1;
  transition: opacity 0.05s;
}

#sds-title {
  grid-area: title;
  font-size: 40px;
  font-family: Nintendo DS Bios;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  pointer-events: none;
}

.sds-seeker {
  grid-area: seeker;
  display: flex;
  align-items: center;
}

/* #sds-seekBody {
  border-color: var(--color-red);
  margin: 0;
  width: 100%;
}

#sds-seekHandle {
  display: block;
  width: 20px;
  height: 10px;
  background-color: var(--color-red);
  position: absolute;
  border: var(--color-black) solid 2px;
} */

#sds-seekInput {
  width: 100%;

  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--color-red);
  outline: none;
}

#sds-seekInput::-moz-range-thumb {
  width: 22px;
  height: 8px;
  background: var(--color-red);
  cursor: pointer;
  border-radius: 0;
  border: 2px solid var(--color-black);
}

#sds-seekInput::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 8px;
  background: var(--color-red);
  cursor: pointer;
}

.sds-time {
  grid-area: time;

  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

#sds-timeText {
  font-size: 10px;
}

#sds-timeNumber {
  font-family: Nintendo DS Bios;
  margin-top: -5px;
}

.sds-output {
  grid-area: output;

  font-size: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 4px;
}

#sds-bars {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 4px;
}

#sds-barsGroup {
  display: flex;
  gap: 2px;
  flex-direction: column;
}

#sds-barVisualLeft {
  width: 100%;
  height: 3px;
  background-color: var(--color-red);
}

#sds-barVisualRight {
  width: 100%;
  height: 3px;
  background-color: var(--color-red);
}
