/* Ranking Badges */
.badge-new {
    background-color: #e74c3c;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85em;
    animation: pulse 2s infinite;
}

.badge-rise {
    background-color: #f1c40f;
    color: #333;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85em;
}

.badge-growth {
    color: #27ae60;
    font-weight: bold;
    font-size: 0.9em;
}

/* Dark mode adjustments */
body.dark-mode .badge-rise {
    color: #2c3e50; /* Ensure text is readable on yellow background */
}

body.dark-mode .badge-growth {
    color: #2ecc71;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
