body {
    font-family: Arial, sans-serif;
    background-color: #1f2937;
    color: #121117;
    line-height: 1.6;
    margin: 0px;
}

main {
    width: 100%;
    background-color: #ffffff;
}

.main-content {
    color: #1f2937;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 5rem;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

header {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
}

.top-logo-container {
    display: block;
    margin: 0 auto;
    max-width: 450px;
}

.top-logo {
    width: 100%;
    max-width: 100%;
}

h1 {
    font-size: 1.2rem;
    color: #1f2937;
}

.top-keywords-day {
    width: 100%;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

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

hr {
    color: #ffffff1f;
    margin: 32px 0px;
}

.update-table {
    margin: 16px 0px;
}

.site-footer {
    background-color: #1f2937;
    color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

.footer-content {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.5rem;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.875rem;
}

.footer-copyright .sub-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-nav a {
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav a:hover {
    color: #60a5fa;
    background-color: #374151;
}

.social-icons {
    display: flex;
    column-gap: 1rem;
}

.social-icons a {
    color: #d1d5db;
    transition-property: color;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
    color: #60a5fa;
}

.social-icons svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive adjustments for medium screens and up */
@media (min-width: 768px) {

    .footer-content {
        flex-direction: row;
        row-gap: 0;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}
