/* Custom styles if needed */

/* Custom Tooltip */
#custom-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(17, 24, 39, 0.95); /* Gray-900 */
    color: #f3f4f6; /* Gray-100 */
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 320px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.1s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transform: translateY(5px);
}

#custom-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}