/* Локальный тост рядом с кнопкой (в цветах Компнетики) */
.copy-toast-local {
  position: absolute;
  top: -40px;
  left: 100%;
  margin-left: 12px;
  background-color: #dfebd7;
  color: #225a3d;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(34, 90, 61, 0.25);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
}
.copy-toast-local.show {
  opacity: 1;
  transform: translateY(0);
}
