/**
 * SATIVAR Global Tooltips
 * macOS-style solid tooltips for all elements with [title] inside #root.
 * No blur/glassmorphism.
 */

.sativar-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
    padding: 6px 10px;
    background: #1e293b;
    color: #f1f5f9;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none !important;
    max-width: 240px;
    opacity: 0;
    transition: opacity 120ms ease-out;
    will-change: transform, opacity;
}

.sativar-tooltip.active {
    opacity: 1;
}

/* Arrow */
.sativar-tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    left: 50%;
    margin-left: -5px;
}

.sativar-tooltip.pos-top::after {
    border-top: 5px solid #1e293b;
    bottom: -5px;
    top: auto;
}

.sativar-tooltip.pos-bottom::after {
    border-bottom: 5px solid #1e293b;
    top: -5px;
    bottom: auto;
}
