body {
  font-family: Arial, sans-serif;
  background-color: black;
}

#currentTime{
  color: white;
  margin-left: 10px;
  margin-right: 10px;
}

#subtitleText{
  width: 96%;
  text-align: center;
  font-size: 60px;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type=range] {
  height: 26px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
  background-color: black;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #50555C;
  background: #50555C;
  border-radius: 14px;
  border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 12px;
  background: #529DE1;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #50555C;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #50555C;
  background: #50555C;
  border-radius: 14px;
  border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 12px;
  background: #529DE1;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #50555C;
  border: 0px solid #000000;
  border-radius: 28px;
  box-shadow: 1px 1px 1px #50555C;
}
input[type=range]::-ms-fill-upper {
  background: #50555C;
  border: 0px solid #000000;
  border-radius: 28px;
  box-shadow: 1px 1px 1px #50555C;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 20px;
  width: 40px;
  border-radius: 12px;
  background: #529DE1;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #50555C;
}
input[type=range]:focus::-ms-fill-upper {
  background: #50555C;
}

button, input {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #737375;
}


button:hover{
  background-color: #3a3a3c;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent white;
}

/* Pause button styles */
.pause-button {
  background-color: #737375;
}

.pause-button:hover {
  background-color: #3a3a3c;
}

.pause-button::before,
.pause-button::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 16px;
  width: 4px;
  height: 16px;
  background-color: #fff;
}

.pause-button::before {
  left: 16px;
}

.pause-button::after {
  left: 24px;
}

.subtitle-container {
  display: flex;
  justify-content: center;
}


.custom-dialog {
  width: 500px;
  padding: 20px;
  background-color: #3a3a3c; /* Set the background color to #3a3a3c */
  border-radius: 10px; /* Make the corners rounded */
  color: white; /* Set the text color to white */
}

@media screen and (max-width: 600px) {
  .custom-dialog {
    width: 300px;
  }
}
