.dots {
    display: flex;
    gap: 20px; /* Abstand zwischen den Kreisen */
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
  }



  .dot.active-orange {
    background-color: #ffaf00; /* oder blau, wie du magst */
  }

  .dot.active-blue {
    background-color: #00fff1; /* oder blau, wie du magst */
  }

  .dot.active-red {
    background-color: #d82741; /* oder blau, wie du magst */
  }