/* styles.css */

.score-gold {
    background-color: gold;
}

.score-silver {
    background-color: silver;
}

.score-lightbrown {
    background-color: rgba(237, 147, 106, 0.999);
}

.red-bg {
    background-color: rgba(228, 13, 13, 0.745);
}

.green-bg {
    background-color: rgb(95, 204, 73);
}

.orange-bg {
    background-color: rgb(249, 247, 119);
}
a:hover {
    background-color: #fff;
}

.flex-container {
    display: flex;
    justify-content: space-between;
}

.flex-item {
    flex: 1;
    text-align: center;
}

.flex-item:first-child {
    text-align: left;
}

.flex-item:last-child {
    text-align: right;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
.table th, .table td {
    text-align: center;
}