/* 
Kemoverse - a gacha-style bot for the Fediverse.
Copyright © 2025 Waifu

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see https://www.gnu.org/licenses/. 
 */
body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background-color: #FAFAFA;
            color: #333;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #5aa02c;
            color: white;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
        }

        header p {
            margin-top: 5px;
            font-size: 1.1em;
        }

        .container {
            margin: 30px auto;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
        }

        h2 {
            border-bottom: 1px solid #ccc;
            padding-bottom: 8px;
            margin-top: 30px;
        }

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

        li {
            margin: 10px 0;
        }

        a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: bold;
            background-color: #e3eaf3;
            padding: 8px 12px;
            border-radius: 6px;
            display: inline-block;
            transition: background-color 0.2s;
        }

        a:hover {
            background-color: #cdd8e6;
        }

        .leaderboard-entry {
            margin-bottom: 8px;
            padding: 6px 10px;
            background: #f9fafc;
            border-left: 4px solid #7289da;
            border-radius: 5px;
        }

        footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.9em;
            color: #888;
        }

        .note {
            background: #fcfcf0;
            border: 1px dashed #bbb;
            padding: 10px;
            border-radius: 8px;
            margin-top: 30px;
            font-size: 0.95em;
            color: #666;
        }

        .footer-link {
            margin: 0 10px;
        }