.removed {
	display: none;
}

.remove-btn {
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 3px 4px; /* Some padding */
  font-size: 16px; /* Set a font size */
  cursor: pointer; /* Mouse pointer on hover */
}
#chord-container {
  width: 100%;       /* ensures the container is full-width */
  overflow: hidden;  /* optional—hides any tiny rounding overflow */
}

#chord-container svg {
  display: block;    /* removes any inline-SVG whitespace */
  max-width: 100%;   /* never exceed the container’s width */
  height: auto;      /* scale height to keep aspect ratio */
}