body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Inter", sans-serif;
}

.container {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  position: absolute; /* Positionierung für das Drag-and-Drop */
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer; /* Zeiger ändert sich zu einer Hand, um zu zeigen, dass es anklickbar ist */
}

.plus-circle {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px; /* 5px Abstand zwischen Text und Plus-Zeichen */
}

.line {
  position: absolute;
  background-color: #ccc;
  height: 2px;
  pointer-events: none;
  z-index: 999; /* Die Linie wird über den Kästen angezeigt */
}
