.podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.podium-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 120px;
    border: 2px solid #ccc;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.first {
    height: 150px;
    color: gold;
    border-color: gold;
}

.second {
    height: 130px;
    border-color: silver;
    color: silver;
}

.third {
    height: 110px;
    border-color: #cd7f32;
    color: #cd7f32;
}

.icon-first {
    font-size: 2.5rem;
    margin-bottom: 1px;
}

.icon-second {
    font-size: 2rem;
    margin-bottom: 1px;
}

.icon-third {
    font-size: 1.5rem;
    margin-bottom: 1px;
}

.name {
    font-weight: bold;
    margin-top: 1px;
}

.score {
    font-weight: 600;
}