#tooltip {
    width: max-content;
    background: #3a4043;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 10000;
    max-width: 220px;
    transition: opacity 0.2s;
    text-align: center;
}

#tooltip[data-show] {
    display: block;
}

#tooltip-content {
    text-align: center;
    width: 100%;
}

#arrow {
    position: absolute;
    background: #3a4043;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    box-shadow: -1px -1px 1px rgba(0,0,0,0.1);
} 