body {
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    margin-top: 30px;
    margin-bottom: 20px;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

th {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.gold {
    background-color: gold;
}

.silver {
    background-color: silver;
}

.bronze {
    background-color: #cd7f32;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.refresh-button,
.activities-button,
.back-button {
    margin-top: 10px;
    margin-bottom: 10px;
}

.refresh-button button,
.activities-button button,
.back-button button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.activities-button button {
    background-color: #007bff; /* Blue color */
}


/* Information Text Styles */
.info-text {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

@media only screen and (max-width: 600px) {
    .button-container {
        flex-direction: column;
    }

    .refresh-button,
    .activities-button {
        margin-top: 5px;
    }
}
