#chord-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 460px;
    margin-top: 5px;
  }

  #chord-diagram svg {
    width: min(100%, 560px);
    height: auto;
    display: block;
  }
  text {
    font-size: 12px;
    pointer-events: auto; /* Allow interaction with text */
  }
  /* Add a slight glow effect */
  .highlight {
    opacity: 1 !important;
    filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.8));
  }
  .fade {
    opacity: 0.4;
    /* console.log('fade'); */
  }
  /* Ribbons glow effect */
  .glow {
    filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.9));
  }
