.verified-badge {
    color: #4CAF50;
    font-size: 12px;
    margin-right: 5px;
}

.real-data {
    border-left: 3px solid #4CAF50;
}

.estimated-data {
    border-left: 3px solid #FF9800;
}

.real-indicator {
    color: #4CAF50;
    font-size: 8px;
    margin-right: 3px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.trend-card {
    position: relative;
}

.trend-card:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}