.challenge-btn {
    width: 36px;
    height: 36px;
    line-height: 30px;
    text-align: center;
    padding: 0;
}
.player-stats {
    font-size: 0.8rem;
}

.game-item {
    transition: background-color 0.3s;
}
.score-input {
    width: 64px !important;
}
.standing-change {
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
}
.standing-up {
    color: green;
}
.standing-down {
    color: red;
}
.standing-same {
    color: gray;
}
.last-games {
    display: inline-flex;
    gap: 2px;
    margin-left: 10px;
}
.game-result {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.win {
    background-color: #28a745;
    color: white;
}
.loss {
    background-color: #dc3545;
    color: white;
}

[data-bs-theme=dark] .challenge-btn {
    background-color: #343a40;
}