/* ============================================
   TOOLTIP PERSONALIZADO DEL DROME
   ============================================ */

.drome-tooltip {
    position: absolute;
    display: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: normal; /* Cambiado de bold a normal por defecto */
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    transform-origin: center bottom;
    line-height: 1.6;
}

.drome-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: inherit;
}

/* Texto normal (sin negrita) */
.tooltip-text {
    font-weight: normal;
}

/* Texto en negrita */
.tooltip-bold {
    font-weight: bold;
}

/* Responsive para tooltip */
@media (max-width: 480px) {
    .drome-tooltip {
        font-size: 11px;
        padding: 5px 10px;
    }
}