/* Style for the entire page */
body {
    background-color: #f5f5f5;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}

/* Center the main header */
h1 {
    text-align: center;
    font-weight: bold; /* Guarantees bold title */
    color: #b30059; /* Fun, bold color for Reality TV theme */
}

/* Center the site navigation */
nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #b30059;
}

/* Center the footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

/* Optional: style your image & figure */
figure {
    text-align: center;
    margin: 20px 0;
}

figcaption {
    font-style: italic;
    color: #555;
}

.ranking-table {
    border-collapse: collapse;
    margin: 20px auto;
    width: 90%;
}

.ranking-table th,
.ranking-table td {
    border: 1px solid #444;
    padding: 8px;
    text-align: center;
}

.ranking-table th {
    background-color: #b30059;
    color: white;
}

.ranking-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
