/* -------------------------------
   GLOBAL
--------------------------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin: 10px 0;
  font-size: 1.2rem;
}

/* -------------------------------
   CONTROLS
--------------------------------- */
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.controls label {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* -------------------------------
   VIEWER
--------------------------------- */
#viewer {
  width: 100%;
  height: 70vh;
  max-width: 600px;
  border: 1px solid #ccc;
}

/* -------------------------------
   VIEW CONTROLS
--------------------------------- */
.view-controls {
  display: flex;
  gap: 5px;
  margin: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.view-controls button {
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid #888;
  border-radius: 5px;
  background: #eee;
}

/* -------------------------------
   CROIX / MARKERS (OPTIONNEL)
--------------------------------- */
.cross {
  position: absolute;
  width: 0.1;
  height: 0.1;
}
