#ruleta-wrapper {
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
}

#wheel {
  border: 8px solid #555;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: block;
  margin: 0 auto 20px;
  width: 90vmin;
  height: 90vmin;
  max-width: 500px;
  max-height: 500px;
}

#controls {
  display: flex;
  justify-content: space-between;
  width: 90vmin;
  max-width: 500px;
  margin: 0 auto 20px;
  gap: 10px;
}

#loadText,
#spinButton {
  flex: 1;
  padding: 10px 0;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#loadText {
  background-color: #28a745;
}

#loadText:hover {
  background-color: #218838;
}

#spinButton {
  background-color: #1E88E5;
}

#spinButton:disabled {
  background-color: #bbb;
  cursor: not-allowed;
}

#spinButton:not(:disabled):hover {
  background-color: #1565C0;
}

#textInput {
  display: block;
  width: 90vmin;
  max-width: 500px;
  height: 100px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 600px) {
  #controls {
    flex-direction: column;
    width: 80vw;
  }
  #controls button {
    width: 100%;
  }
  #textInput {
    width: 80vw;
    max-width: none;
  }
  #wheel {
    max-width: 80vw;
    max-height: 80vw;
  }
}