.tooltip {
    position: absolute;
    display: none;
    flex-direction: column;
    max-width: 300px;
    min-width: min(100%, 50px);
    box-sizing: border-box;
    align-items: center;
    background-color: rgb(74, 74, 74);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    z-index: 100;
    padding: 8px;
    pointer-events: none;
    user-select: none;
}

.tooltip::after {
    top: 100%;
    left: 50%;
}

.tooltip-text {
    font-size: 13px;
}

.tooltip-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99;
}