body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1b1b1d;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

img {
    margin-bottom: 5px;
    max-width: 100%;
    height: auto;
}

.header-text {
    color: white;
    text-align: center;
    font-size: 1.5em;
    margin: 5px 0;
}

.date-header {
    color: white;
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
}

.menu {
    margin: 20px 0;
    text-align: center;
}

.menu h3 {
    margin-bottom: 10px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    display: inline-block;
    margin: 5px;
}

.menu a {
    color: #A51919;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #1b1b1d;
}

.menu a:hover {
    color: white;
    background-color: #8B1616;
}

.table {
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
    border-collapse: collapse;
}

.table th, .table td {
    text-align: center;
    color: white;
    word-wrap: break-word;
    padding: 10px;
    border: 1px solid #444;
}

.table th {
    background-color: #333;
}

.table th:nth-child(1), .table td:nth-child(1) { width: 20%; }
.table th:nth-child(2), .table td:nth-child(2) { width: 15%; }
.table th:nth-child(3), .table td:nth-child(3) { width: 15%; }
.table th:nth-child(4), .table td:nth-child(4) { width: 15%; }
.table th:nth-child(5), .table td:nth-child(5) { width: 15%; }
.table th:nth-child(6), .table td:nth-child(6) { width: 20%; }

.btn-primary {
    background-color: #A51919;
    border: none;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
}

.btn-primary:hover {
    background-color: #8B1616;
}

.text-center {
    text-align: center;
}

.footer {
    background-color: #000;
    padding: 10px 0;
    margin-top: 0;
    font-size: 0.8em;
    color: #888;
}

.footer a {
    color: #888;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .header-text {
        font-size: 1.2em;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .table th, .table td {
        font-size: 0.9em;
        padding: 3px;
        display: inline-block;
        width: auto;
    }

    .table th {
        text-align: left;
    }

    .table td {
        text-align: left;
    }

    .btn-primary {
        padding: 5px;
        width: auto;
    }
}