/* Floating feedback button */
#myCustomTrigger {
  font-family: "Albert Sans",sans-serif;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff8c02;
  color: #fff;
  border: 0;
  border-radius: 9999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
  z-index: 2147483000;
  transition: transform .06s ease-out, background-color .15s ease-in-out;
}
#myCustomTrigger:hover { background: #ef4864; }
#myCustomTrigger:active { transform: translateY(1px); }
#myCustomTrigger:focus-visible {
  outline: 3px solid #fff; outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255,105,180,.5);
}
@media (max-width: 480px) {
  #myCustomTrigger { bottom: 16px; right: 16px; padding: 10px 16px; font-size: 15px; }
}

/* (Optional) Hide any default Jira tab if it ever appears */
#atlwdg-trigger, .atlwdg-trigger, .jira-issue-collector-trigger { display: none !important; }
