.leaderboard {
 max-width: 600px;
 margin: 0 auto;
 background: #fff;
 border-radius: 8px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 padding: 20px;
}
.leaderboard__container {
 width: 100%;
 display: flex;
 flex-direction: column;
 gap: 12px;
 justify-content: center;
}

.leaderboard__wrapper {
 gap: 10px;
 width: 100%;
 display: flex;
 align-items: center;
 border-bottom: 1px solid #e0e0e0;
 padding-bottom: 12px;
 margin-bottom: 15px;
}

.leaderboard__item {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.leaderboard__item:last-child {
 border-bottom: none;
}

.leaderboard__rank {
 font-size: 24px;
 font-weight: bold;
 color: #0150ae;
}

.leaderboard__name {
 flex: 1;
 font-size: 14px;
 font-weight: 700;
 color: #333;
 margin-left: 10px;
}

.leaderboard__score {
 font-size: 14px;
 font-weight: bold;
 color: #e30613;
}

.progress-bar {
 width: 100%;
 height: 8px;
 background-color: #e0e0e0;
 border-radius: 4px;
 margin-top: 5px;
}

.progress-bar__fill {
 height: 100%;
 border-radius: 4px;
 background-color: #4caf50;
}

/* Для фотографии пользователя */
.leaderboard__photo {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 object-fit: cover;
}

/* Стиль для текста "корун" */
.korun-text {
 font-size: 14px;
 font-weight: 500;
 color: #333;
}

.leaderboard__item--low {
 color: #f44336;
}
