/* Add your styling here */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 24px;
    margin: 20px 0;
}


/* Styling for ranking containers */

#tournament-rankings,
#global-rankings,
#team-rankings {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px auto;
    max-width: 800px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


/* Styling for ranking lists (you can customize this further) */

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}


/* Styling for links */

a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}