/**
 * Global style definitions


.hello-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;

  section {
    padding: 20px;
    margin: 10px;
    background: var(--bg-content);
    border-radius: 10px;
  }
}
 */

/* === Emotion Selector Styling === */

/* Hintergrundfarbe für ganze Seite */
html, body {
  margin: 0;
  background-color: #1e1d1d;
  color: white;
  font-family: Arial, sans-serif;
}

button {
  cursor: pointer;
}
/* Abschnittsüberschrift */
.headline {
  font-size: 1.4rem;
  color: #1db954;
  margin-bottom: 1rem;
  margin-left: 5px;
}

/* Start-/Target-/Genre-Container (zentriert, ohne Schatten) */
.emotion-start-container,
.emotion-target-container,
.emotion-genre-container {
  padding: 2rem;
  background-color: #1e1d1d;
  border: none;
  box-shadow: none;
  max-width: 700px;
  margin: 0 auto;
}

/* Basis-Button */
.emotion-start-button,
.emotion-target-button,
.emotion-genre-button {
  background-color: #3a3a3a;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Selektierter Button (grün) */
.emotion-start-button-change,
.emotion-target-button-change,
.emotion-genre-button-change {
  background-color: #1db954;
  color: black;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a:hover {
  color: #1db954;
}

/* Navigation */
nav {
  background-color: #3a3a3a;
}

.login-bg-headphone {
  background-image: url('../common/components/assets/img/headphones-breakpoint-small.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  .login-bg-headphone {
    background-image: url('../common/components/assets/img/headphones-breakpoint-large.png');
    background-position: center -150px;
  }
}

#confirm:active, .user-button:active {
  transform: scale(0.95);
}

.disabled{
  opacity: 0.5;
  pointer-events: none;
}





/* === Playlist Styles === */
.playlist-container {
  min-height: 100vh;
  background-color: #1e1d1d;
  color: white;
}

.playlist-title {
  color: #1db954;
}

.playlist-button {
  background-color: #1db954;
  color: black;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.playlist-button:hover {
  background-color: #1ed760;
}

.playlist-button:active {
  transform: scale(0.95);
}

/* Additional Playlist Styles */
.playlist-card {
  background-color: #2a2a2a;
  max-width: 20rem;
}

.playlist-image {
  width: 100%;
  height: auto;
}

.playlist-info {
  padding: 1rem;
}

.playlist-name {
  color: white;
}

.playlist-description {
  color: #ccc;
}