
button.spectra-popup-btn {
  all: unset;
  cursor: pointer;
  display: inline;
  font: inherit;
  line-height: inherit;
  color: #B3955B; /* Base link color */
  text-decoration: underline;
  text-underline-offset: 2px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  text-decoration-thickness: 1px; /* Optional: more polished underline */
  text-decoration-color: #B3955B; /* Explicit control */
}


button.spectra-popup-btn:hover {
  color: #454955; /* Hover color */
  text-decoration-color: #454955;
  background-color: transparent; /* <-- Add this */
}

button.spectra-popup-btn:focus-visible {
  outline: 2px solid #B3955B; /* Optional: better accessibility for keyboard users */
  outline-offset: 2px;
}