body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}
form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}
label {
    margin-bottom: 0.5rem;
}
input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 3px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
button {
    background-color: #009688;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 3px;
}
button:hover {
    background-color: #00675b;
}
#message {
    display: none;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 3px;
}
#message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
#message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
body.dark {
    background-color: #121212;
}
form.dark {
    background-color: #2C2C2C;
    color: #FFFFFF;
}
#toggleTheme {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

#logo {
    position: fixed; /* Fixe le logo en haut de la page */
    top: 1rem; /* Ajuste l'espacement par rapport au haut */
    left: 50%;
    height: 100px;
    transform: translateX(-50%);
    z-index: 1000; /* S'assure que le logo reste au-dessus des autres éléments */
}
 
footer {
    position: fixed; /* Fixe le footer en bas de l'écran */
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff; /* Texte blanc pour le contraste */
    text-align: center;
    padding: 0.5rem 0; /* Compact et équilibré */
    font-size: 0.75rem; /* Taille ajustée pour rester élégant */
    line-height: 1.2;
    border-top: 1px solid #333; /* Bordure subtile */
    box-shadow: none; /* Retire l'ombre */
    background-color: transparent; /* Supprime le fond gris */
    z-index: 1000; /* S'assure qu'il reste visible */
}

.draw-container {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #121212;
}

.draw-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.draw-btn {
  background-color: #009688;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 3px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.draw-btn:hover {
  background-color: #00675b;
}

.draw-roulette {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
}

.draw-result {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
}
.roulette-container {
    overflow: hidden;
    height: 40px;
}

.roulette-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roulette-item {
    padding: 5px;
    color: #ffffff;
}


