.tm-leaderboard-wrap {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto 30px auto;
    font-family: inherit;
    gap: 0;
}

.tm-lb-row {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 6px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    border-left: 3px solid #fff;
}

.tm-lb-row:last-child {
    border-bottom: none;
}

.tm-lb-row.is-me {
    background-color: #f0fdf4;
    border-left: 3px solid #28a745;
    z-index: 2;
}

.tm-lb-rank {
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
    width: 10px;
    text-align: center;
    flex-shrink: 0;
}

.tm-lb-row.is-me .tm-lb-rank {
    color: #28a745;
    font-weight: 700;
}

.tm-lb-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    object-fit: cover;
    margin: 0 20px;
    background: transparent;
    flex-shrink: 0;
}

.tm-lb-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tm-lb-name {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.tm-lb-row.is-me .tm-lb-name {
    color: #28a745;
}

.tm-lb-points {
    font-size: 10px;
    color: #9eacbf;
    font-weight: 500;
    white-space: nowrap;
}

.tm-lb-row.is-me .tm-lb-points {
    color: #28a745;
    font-weight: 700;
}