/* line 1, app/assets/stylesheets/grabbable.scss */
.grabbable {
  text-decoration: underline;
  position: relative;
  cursor: grab;
}

/* line 6, app/assets/stylesheets/grabbable.scss */
.grabbable:hover {
  background-color: #dcdcdc;
  cursor: grab;
}

/* line 10, app/assets/stylesheets/grabbable.scss */
.grabbable:hover::after {
  opacity: 1;
}

/* line 15, app/assets/stylesheets/grabbable.scss */
.grabbable:active {
  cursor: grabbing;
}

/* line 19, app/assets/stylesheets/grabbable.scss */
.grabbable::after {
  content: "Klik for at kopiere";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}
