/* Existing copy tooltip styles */
.copy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-size: 14px;
    cursor: pointer;
    color: #555;
    vertical-align: middle;
    position: relative;
}

.copy-icon i {
    font-size: 14px;
}

.copy-tooltip {
    display: none;
    position: absolute;
    bottom: 125%; /* show above icon */
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
}

.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -4px;
    border-width: 4px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

/* --- Add autocomplete dropdown styling below --- */
#tokencheckr-suggestions {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 420px;
  z-index: 9999;
  display: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#tokencheckr-suggestions .suggestion {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}
#tokencheckr-suggestions .suggestion:hover {
  background: #f5f5f5;
}
