body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #000;              /* Fond noir Star Wars */
  color: #ffe81f;                /* Jaune Star Wars pour le texte */
  position: relative;
}

/* Fond étoilé façon Star Wars */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: 
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  background-position: 0 0, 20px 20px;
  opacity: 0.5;
}

h1, h2, h3 {
  font-family: 'Arial Black', Arial, sans-serif;
  color: #ffe81f;                /* Jaune Star Wars pour les titres */
  text-shadow: 2px 2px 8px #000; /* Ombre noire */
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(0,0,0,0.7);   /* Fond semi-transparent */
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 0 24px #111;     /* Ombre douce */
}

label {
  color: #ffe81f;                /* Jaune Star Wars pour les labels */
  font-weight: bold;
}

input, textarea, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 4px;
  border: 1px solid #ffe81f;     /* Bordure jaune */
  background: #111;              /* Fond gris très foncé */
  color: #ffe81f;                /* Texte jaune */
}

button {
  background: #ffe81f;           /* Jaune Star Wars */
  color: #111;                   /* Texte foncé */
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 8px;
}

button.secondary {
  background: #111;              /* Fond foncé */
  color: #ffe81f;                /* Jaune Star Wars */
  border: 1px solid #ffe81f;     /* Bordure jaune */
}

.sabre-choice label {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.sabre-choice input[type="radio"] {
  margin-right: 0;
  margin-left: 0;
}
.sabre-color {
  margin-right: 0;
  margin-left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 2px #fff;
  display: inline-block;
  margin-right: 10px;
}
.sabre-color.red { background: #ff0000; }
.sabre-color.green { background: #00ff00; }
.sabre-color.blue { background: #0080ff; }
