body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2, h3 {
  text-align: center;
  color: #007bff;
}

label {
  display: block;
  margin: 10px 0 5px;
}

select, input[type="text"], textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid black;
  text-align: center;
  padding: 8px;
}

th {
  background-color: #007bff;
  color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Button styling */
button {
  width: 48%;
  padding: 10px;
  background-color: #28a745; /* Green for 'Suivant' button */
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

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

button.prev {
  background-color: transparent; /* Transparent background for 'Précédent' */
  border: 2px solid #28a745; /* Green border for 'Précédent' */
  color: #28a745; /* Green text for 'Précédent' */
  font-weight: bold;
}

button.prev:hover {
  background-color: #28a745; /* Green background when hovered */
  color: white; /* White text when hovered */
}

/* Center the 'Suivant' button */
button.center {
  display: block;
  margin: 20px auto;
}

.image-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto 20px;
  border: 1px solid #ddd;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

/* Styling for the markers */
.marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.marker.red {
  background-color: red;
}

.marker.orange {
  background-color: orange;
}

/* Color selector styling */
.color-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.color-selector button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: white;
  border-radius: 4px;
}

.color-selector .red {
  background-color: red;
}

.color-selector .orange {
  background-color: orange;
}

.page {
  display: none;
}

.active {
  display: block;
}

.marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.image-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto 20px;
  border: 1px solid #ddd;
}


.image-container {
  width: 100%; /* Prend toute la largeur disponible */
  max-width: 800px; /* Limite la largeur à 800px */
  margin: 0 auto; /* Centrer horizontalement */
}

.image-container svg {
  width: 100%; /* Rendre responsive */
  height: auto; /* Conserver les proportions */
}