body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
h2 {
  font-family: 'Luckiest Guy', sans-serif;
  font-size: 2em;
  color: red;
  text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}
form {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
select, input[type="text"], input[type="radio"], input[type="time"], input[type="password"] {
    margin-bottom: 15px;
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.radio-group {
    display: flex;
    justify-content: space-between;
}
button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}

/* Header styles */
.header {
    background-color: #333; /* Gris foncé */
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header links */
.header-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.header-link:hover {
    background-color: white;
    color: #333;
}

/* Right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-size: 16px;
    color: white;
}

.hidden {
    display: none;
}
.visible {
    display: block;
}
.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.radio-group input[type="radio"] {
    order: 2; /* Place le bouton radio après le texte */
}

.adversaire-group {
    margin-top: 15px;
    display: block; /* Par défaut, le champ texte est affiché */
}
.indent-1 { margin-left: 20px; }
.indent-2 { margin-left: 40px; }
