/* Stylesheet empty */
body {
    background-color: #ffffff;
    background-image: url('puxxle.png');
    background-repeat: repeat;
    color: #000000;
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none !important;
}

.nav-bar {
    background-color: #000075;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

.nav-bar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin: 0 10px;
    padding: 2px 5px;
    border: 1px solid #ffffff;
}

.nav-bar a:hover {
    background-color: #ffffff;
    color: #000075;
}

.page-section {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-text {
    color: red;
    font-size: 35px;
    font-weight: bold;
}

.large-text {
    font-size: 35px;
    color: #000075;
    font-weight: bold;
}

.download-link {
    color: blue;
    text-decoration: underline;
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    font-style: italic;
    font-size: 22px;
}

.footer {
    text-align: center;
    padding: 20px;
    border-top: 3px dashed black;
    margin-top: 50px;
    font-size: 14px;
}

table {
    background-color: #f9f9f9;
}

th {
    background-color: #000075;
    color: white;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Mobile responsive hack for tables */
@media screen and (max-width: 600px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }
    th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        text-align: center;
    }
    .page-section {
        padding: 5px;
    }
    .warning-text, .large-text {
        font-size: 24px;
    }
    .nav-bar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px;
    }
    .nav-bar a {
        margin: 5px;
    }
}

/* Scrolling Banner */
.scrolling-banner-container {
    width: 100%;
    overflow: hidden;
    /*background-color: #000;*/
    padding: 10px 0;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
    margin-top: 10px;
}

.scrolling-banner {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.scrolling-text {
    font-size: 2.5em;
    font-weight: bold;
    font-style: italic;
    color: red;
    text-transform: uppercase;
    padding-right: 20px; /* Space between repetitions */
    animation: blinker 0.5s linear infinite; /* Re-using the existing blinker animation */
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}