body {
  margin: 0;
  background: transparent;
  font-family: "Segoe UI", sans-serif;
  overflow-y: hidden; /* Hide vertical scrollbar */
}

h1 {
  text-align: center;
  font-size: 75px;
}

#mainContainer {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%) scale(1);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#mainContainer.hidden {
  opacity: 0;
}
#progressTime.hidden {
  opacity: 0;
}
#timeRemaining.hidden {
  opacity: 0;
}
#progressBar.hidden {
  opacity: 0;
}

#albumArtBox {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

#albumArt {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

#songInfoBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 350px;
}

#songLabel {
  font-size: 24px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  text-overflow: clip;
}

#artistLabel {
  font-size: 18px;
  color: #ddd;
  margin-top: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  text-overflow: clip;
}

#times {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  color: white;
  margin-top: 10px;
}

#progressBg {
  width: 100%;
  height: 8px;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
}

#progressBar {
  height: 100%;
  background: #ffffff;
  width: 0%;
  border-radius: 10px;
  transition: width 0.5s linear;
}

/* Test CSS for OBS */

/* end Test CSS for OBS */

/* For css in obs */
/*

      .mainContainer {
        border-color: #1db954 !important;
        border-width: 2px !important;
        border-style: solid  !important;
      }

      .songLabel {
        color: #1db954 !important;
      }

      .artistLabel {
        color: #1db954 !important;
      }

      .times {
        color: #1db954 !important;
      }

      .progressBg {
        background: #fff !important;
      }

      .progressBar {
        background: #1db954 !important;
      }

      */
