/* 
 * Copy Tooltip CSS
 * Modern black & white style with green check mark
 */

/* Inline copy tooltip */
.inline-copy-tooltip {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.inline-copy-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px; /* Moved slightly further down for better visibility */
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px; /* Larger arrow */
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); /* Add subtle shadow */
}

.inline-copy-tooltip.show {
    opacity: 1;
    transform: translateY(-5px);
}

/* Green check icon */
.inline-copy-tooltip .fa-check-circle {
    color: #4ade80;
    margin-right: 5px;
    font-size: 14px;
}

/* Make the tooltip more visible */
.inline-copy-tooltip {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}