body {
  text-align: center;
  color: #FFF;
  font-family: "Verdana", "Geneva", "sans-serif";
  background-image: url("../img/purple_mosaic.png");
  background-attachment: fixed;
}

h1 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 8px;
}

p {
  font-size: 18px;
  margin-top: 0px;
}

a {
  color: #FFF;
  font-weight: bold;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

foot {
  display: block;
  font-size: 14px;
  padding-bottom: 20px;
}

nav {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
}

nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
nav ul li {
  float: left;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 650px) {
  nav ul li {
    float: none;
  }
}
nav ul li a {
  padding: 14px;
  text-decoration: none;
}
nav ul li a:hover {
  text-decoration: underline;
}

#main-logo {
  width: 90%;
  max-width: 400px;
}

.social-badge {
  height: 60px;
  margin-bottom: 5px;
}

#items-list {
  list-style-type: none; /* Removes bullet points */
  padding: 0px; /* Removes default padding */
}

#search {
  border-radius: 20px;
  border: 1px;
  padding-left: 20px;
  padding-right: 40px;
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 18px;
  width: 300px;
  text-align: center;
  background-image: url("../img/search-icon.webp");
  background-repeat: no-repeat;
  background-position: right center;
}

#player-container {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  max-width: 100%;
  background: #333333;
  /*border-top-left-radius: 10px;
  border-top-right-radius: 10px;*/
}

.album-art {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 10px;
  /*border-top-left-radius: 10px;*/
}

.player-controls {
  display: flex;
  align-items: center;
  min-width: 0;
}

.play-pause {
  flex: none;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-image: url("../img/play.svg");
  background-size: cover;
  cursor: pointer;
}

.play-pause.amplitude-playing {
  background-image: url("../img/pause.svg");
}

.song-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-name {
  font-size: 14px;
  margin-right: 5px;
}

.play-time {
  font-size: 14px;
  white-space: nowrap;
}

.current-time, .duration {
  padding: 0 5px;
}

#ad-header {
  margin-bottom: 7px;
}

#ad-footer {
  margin-bottom: 67px;
}

/* Hide by default */
#ad-left,
#ad-right {
  display: none !important;
}

/* Only show on wide screens */
@media (min-width: 1800px) {
  #ad-left,
  #ad-right {
    display: block !important;
    width: 300px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);

  }

  #ad-left {
    left: calc(50% - 900px); 
    right: auto;
  }

  #ad-right {
    left: auto;
    right: calc(50% - 900px); 
  }
}
