/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 18 2025 | 10:33:55 */
.contact-button {
  overflow: visible !important;
  position: relative;
  z-index: 10;
}

.copy-btn-button {
  /* Эти стили можно оставить, они не конфликтуют */
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.copy-btn-button::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.copy-btn-button:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.copy-btn-icon {
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
  vertical-align: middle;
  color: #666;
  transition: color 0.3s ease;
}

.copy-btn-icon:hover {
  color: #000;
}
