body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

#app {
  padding: 10px;
}

#togglePlaylist {
  margin-bottom: 10px;
}

#playlistContainer {
  max-height: 400px; /* Adjust height as needed */
  overflow-y: auto;
}

#playlistTable {
  width: 100%;
  border-collapse: collapse;
}

#playlistTable th,
#playlistTable td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

#playlistTable th {
  background-color: #f2f2f2;
}

.album-art {
  transition: opacity 0.3s ease;
}

.album-art.faded {
  opacity: 0.5; /* Adjust the opacity as needed */
}

.playing {
  font-weight: bold;
}

#playbackUI {
  margin-top: 20px;
  padding: 10px;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#currentSongInfo {
  font-size: 18px;
  margin-bottom: 10px;
}

#playbackControls button {
  margin: 0 5px;
  padding: 5px 10px;
}

#playlistTilesContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align content to the left */
  margin-top: 20px;
}

.playlist-tile {
  width: 100px;
  height: 100px;
  margin: 5px;
  cursor: pointer;
}

.playlist-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#radioTilesContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align content to the left */
  margin-top: 20px;
}

.radio-tile {
  width: 100px;
  height: 100px;
  margin: 5px;
  cursor: pointer;
}

.radio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lock-icon,
.refresh-icon {
  position: fixed;
  top: 10px;
  cursor: pointer;
  font-size: 24px;
}

.lock-icon {
  right: 10px;
}

.refresh-icon {
  right: 50px; /* Adjust as needed to position next to the lock icon */
}

.admin-tool {
  position: fixed;
  top: 50px;
  right: 10px;
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 66%;
}

.admin-tool input {
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.admin-tool button {
  padding: 5px 10px;
  margin-bottom: 15px;
}

#timeInfo {
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 1280px) {
  /* Adjust styles for Full HD resolution */
  #playlistTable img {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 800px) {
  /* Adjust styles for 8" device */
  #playlistTable img {
    width: 50px;
    height: 50px;
  }
}
