/*
 * User list page — avatar circle + stat tile chrome.
 * Loaded by `templates/_base_linear.html` so the styles are
 * available wherever the .user-avatar / .stat-icon classes appear.
 */

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A192F 0%, #FF6B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}
