/**
 * Fichier : /public/css/tools/tools.css
 * Styles pour les outils globaux (Tooltip flottant)
 */

.ui-tooltip-wrapper {
}

.ui-tooltip-floating {
    position: fixed;
    pointer-events: none; /* Ne pas bloquer la souris */
    z-index: 99999;
    background-color: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    backdrop-filter: blur(4px);
    /* Animation légère à l'apparition */
    animation: tooltip-fade 0.15s ease-out;
}

@keyframes tooltip-fade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}