body {
  background-color: black;
}
#divCarPanel {
  position: fixed;
  top: 25px;
  left: 50%;
  width: 400px;
  max-width: 90%;
  height: 600px;
  transform: translate(-50%, 0%);
  padding: 20px; /* Optional: Add some padding */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
  background-color: black;
  color: white;
  font-size: 1.2rem;
  border: 8px outset green;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
}

#divControls {
  text-align: center;
}

#divControls :hover {
  border: 3px solid chartreuse;
}

#divControls img {
  height: 40px;
}

#imgDesktopMode {
  max-width: 240px;
  margin: 0.5em 20px;
}

#imgDesktopMode:hover {
  border: 3px solid white;
}

#ulCarInfo {
  list-style: none;
  margin: 8px 10px 8px 8px;
}

#liCarFolderName,
#liCarTrackTitle,
#liCarPositionSlider {
  border: 3px solid chartreuse;
  border-radius: 8px;
  padding: 4px;
  margin: 8px 0;
}

#liCarPositionSlider {
  border: none;
  padding: 4px;
  margin: 8px 0;
}

#pTimePanel {
  width: fit-content;
  max-width: 90%;
  display: block;
  padding: 6px;
  text-align: center;
  color: chartreuse;
  margin: auto;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2em;
  border: 4px inset silver;
  border-radius: 12px;
}

/* ============================= */
#imgCarPlayPause {
  width: 40px;
  height: 40px;
  margin: 0.5em auto;
  border-top: 1px dotted white;
  border-bottom: 1px dotted white;
}
