body {
    font-family: Arial, sans-serif;
    margin: 20px;
    text-align: center;
    background-color: #1E1E1E;
    color: white;
}
table {
    border-collapse: collapse;
    width: 50%;
    margin: 20px auto;
    background-color: #3B3B3B;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
th {
    background-color: #595959;
}

h1,
.h1 {
    color: white;
}

tr,
.tr {
    color: white;
}

/* Podium Styles */
.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 20px;
    gap: 20px;
}

.podium-item {
    text-align: center;
    background-color: #3B3B3B;
    border-radius: 10px;
    padding: 20px;
    color: black;
    width: 120px;
    position: relative;
    font-family: Arial, sans-serif;
}

.podium-item.first {
    height: 200px;
    background-color: #FFD700;
}

.podium-item.second {
    height: 170px;
    background-color: #C0C0C0;
}

.podium-item.third {
    height: 150px;
    background-color: #CD7F32;
}

.podium-item .rank {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.podium-item .username {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.podium-item .reward {
    font-size: 14px;
    margin: 5px 0;
}

.podium-item .wagered {
    font-size: 14px;
}

/* Leaderboard List Styles */
.leaderboard-list {
    margin: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.leaderboard-list ul {
    list-style: none;
    padding: 0;
}

.leaderboard-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3B3B3B;
    border-radius: 10px;
    margin: 10px auto;
    padding: 10px 20px;
    color: white;
    width: 40%;
    font-size: 16px;
}

.leaderboard-list li span.list-user {
    text-align: left;
    width: 33%;
}
.leaderboard-list li span.list-wagered {
    text-align: center;
    width: 33%;
}
.leaderboard-list li span.list-reward {
    text-align: right;
    width: 33%;
}

@media only screen and (max-width: 480px) {
    .leaderboard-list {
        margin: 20px;
        text-align: center;
        font-family: Arial, sans-serif;
    }
    
    .leaderboard-list ul {
        list-style: none;
        padding: 0;
    }
    
    .leaderboard-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #3B3B3B;
        border-radius: 10px;
        margin: 10px auto;
        padding: 10px 15px;
        color: white;
        width: 95%;
        font-size: 16px;
    }
    
    .leaderboard-list li span.list-user {
        text-align: left;
        display: flex;
        width: 33%;
    }
    .leaderboard-list li span.list-wagered {
        text-align: center;
        display: flex;
        width: 33%;
    }
    .leaderboard-list li span.list-reward {
        text-align: right;
        display: flex;
        width: 33%;
    }
}

/* Footer Styles */
.footer_section {
    color: white;
    padding: 10px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.terms-list {
    list-style-position: inside; 
    text-align: center; 
    padding: 0; 
    margin: 20px auto;
    width: fit-content;
}

.terms-list li {
    font-size: 16px;
    margin-bottom: 10px;
}

