.tooltip-container {
    position: absolute;
    width: 200px;
    background: #1a1b26;
    /* Dark slate background */
    border: 1px solid #4a5568;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 1000;
    font-family: 'Verdana', sans-serif;
    font-size: 11px;
    color: #e2e8f0;
    overflow: hidden;
    transition: opacity 0.1s ease;
}

.tooltip-header {
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 48px;
    position: relative;
}

.tooltip-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #1a1b26);
}

.tooltip-image-container {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    padding: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.tooltip-weight-header {
    font-weight: bold;
    color: #a0aec0;
    font-size: 10px;
    z-index: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.tooltip-body {
    padding: 8px 10px;
}

.tooltip-title {
    color: #f6ad55;
    /* Orange-ish title */
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tooltip-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e0;
}

.stat .icon {
    width: 14px;
    text-align: center;
}

.tooltip-description {
    margin-top: 8px;
    font-style: italic;
    color: #a0aec0;
    font-size: 10px;
    border-top: 1px solid #2d3748;
    padding-top: 6px;
}