@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fade 0.4s ease-out;
  animation-fill-mode: forwards;
}

/* Background styling controlled by JS */
#background {
  transition: background 1s ease-in-out;
}

/* Spotify status box styling */
.spotify-status {
  position: fixed;
  bottom: 1rem; /* 16px */
  left: 1rem; /* 16px */
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 0.7rem;
  border-radius: 0.375rem; /* rounded-md */
  font-size: 0.875rem; /* text-sm */
  color: #eee;
  max-width: 520px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
