/* General Layout */
body {
  background: linear-gradient(to right, #4b0082, #8a2be2);
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: rgba(75, 0, 130, 0.9);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

main {
  max-width: 1850px;
  margin: 30px auto;
  padding: 20px;
}

/* Section that holds all wheels */
section {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}

/* Grid layout for wheel tabs */
.wheel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  align-items: start;
}

/* Individual wheel tab box */
.wheel-tab {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  max-height: 800px;
  overflow-y: auto;
}

/* Headings */
.wheel-tab h3 {
  margin-top: 0;
  color: #ffcc00;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Prize item blocks */
.odds-fields-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.odds-wrapper {
  display: flex;
  flex-direction: column;
}

.odds-wrapper label {
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}

.odds-wrapper input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  color: white;
  box-sizing: border-box;
}

/* Save Button */
.save-btn {
  margin-top: 20px;
  align-self: center;
  padding: 10px 20px;
  background: #ffcc00;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.save-btn:hover {
  background: #e6b800;
}
