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;
}
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: absolute;
    top: 2rem;
    left: 50%;
    height: 100px;
    transform: translateX(-50%);
}
 
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #242424;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
}
.dark footer {
  background-color: #242424;
  color: #fff;
}

.light footer {
  background-color: #f5f5f5;
  color: #000;
}


.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;
}


