/* 
   DASHBOARD.CSS
   Dashboard-specific styles — card and chart bases now in design_system_v1.css
*/

/* Leaderboard Specifics */
.medal-1 { color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.medal-2 { color: #C0C0C0; }
.medal-3 { color: #CD7F32; }

/* User Leaderboard & Rank Styles */
.leaderboard-row {
    transition: all 0.2s var(--poc-ease, ease);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 4px;
    cursor: default;
}

.leaderboard-row:hover {
    background: rgba(67, 56, 202, 0.05) !important;
    transform: translateX(3px);
}

.rank-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: white; }
.rank-2 { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); color: white; }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #B8860B); color: white; }
.rank-default { background: rgba(79, 70, 229, 0.1); color: var(--primary-light); }

.progress-thin {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
}

.progress-thin .progress-bar {
    border-radius: 3px;
}

.card-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

/* Conversion Item Transitions */
.conversion-item {
    transition: all 0.2s var(--poc-ease, ease);
}

.conversion-item:hover {
    padding-left: 8px;
}

/* Headline Typography for Dashboards */
.dash-header-title {
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.dash-header-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.container-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Pulse removed */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
