body {
    background-color: #111;
    color: #eee;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background-color: #222;
    color: #eee;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #222;
}


.watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: #e0a6c4;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
    width: 100%;
    padding: 20px;
    background-color: transparent;
}

.footer a {
    color: #4477aa;
    text-decoration: none;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #111;
        color: #eee;
    }

    th {
        background-color: #222;
        color: #eee;
    }

    tr:nth-child(even) {
        background-color: #333;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 18px;
    }

    h1 {
        font-size: 22px;
    }
}