/* =============================================
   TALENT TOOLTIP - Styles
   ============================================= */

.talent-tooltip {
    position: fixed;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid #4a4a6a;
    border-radius: 8px;
    padding: 15px;
    min-width: 280px;
    max-width: 350px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.talent-tooltip.visible {
    opacity: 1;
}

/* Tooltip Header */
.tooltip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3a3a5a;
}

.tooltip-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid #ffd700;
}

.tooltip-title h3 {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 2px;
}

.tooltip-title span {
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* Tooltip Body */
.tooltip-body {
    font-size: 0.9rem;
    line-height: 1.5;
}

.tooltip-body p {
    margin-bottom: 10px;
}

#tooltipDescription {
    color: #ffffff;
}

.tooltip-body .next-rank {
    color: #00ff00;
    font-style: italic;
}

.tooltip-body .requires {
    color: #ff6666;
    font-weight: 500;
}

.tooltip-body .requires:empty,
.tooltip-body .next-rank:empty {
    display: none;
}

/* Tooltip Footer */
.tooltip-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #3a3a5a;
    font-size: 0.8rem;
    color: #888;
}

#tooltipClick {
    display: block;
}

.tooltip-footer .left-click {
    color: #00ff00;
}

.tooltip-footer .right-click {
    color: #ff6666;
}
