
  body {
    font-family: "Montserrat", sans-serif;
  }

  .checkbox-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    user-select: none;
  }

  /* Hide default checkbox */
  .checkbox-item input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
  }

  /* Custom checkbox */
  .checkmark {
    height: 16px;
    width: 16px;
    background-color: #ddd;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.2s ease;
  }

  .checkbox-item input:checked ~ .checkmark {
    background-color: #106cb5;
  }

  /* Different color styles per label */
  .sens { color: #106cb5; }
  .alsi { color: #292B2C; }
  .indi { color: #FED24C; }

  /* Responsive font and spacing */
  @media (max-width: 600px) {
    .checkbox-item {
      flex: 1 1 100%;
      justify-content: center;
      font-size: 16px;
    }
  }

