body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f2f5;
  color: #333;
}

.container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

h1 {
  color: #1db954; /* Vert Spotify */
  margin-bottom: 20px;
}

p {
  margin-bottom: 30px;
  line-height: 1.6;
}

button {
  background-color: #1db954; /* Vert Spotify */
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1ed760; /* Vert un peu plus clair au survol */
}

.status-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: none; /* Caché par défaut */
}

.status-message.success {
  background-color: #e6ffe6; /* Vert très clair */
  color: #1db954; /* Vert Spotify */
  border: 1px solid #1db954;
}

.status-message.error {
  background-color: #ffe6e6; /* Rouge très clair */
  color: #ff0000; /* Rouge */
  border: 1px solid #ff0000;
}
