body {
    text-align: center;
    background-color: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

#pollenmain {
    width: 95%;
    max-width: 1400px;
    margin: 14px auto;
    padding: 0 24px 28px;
    background-color: #ffffff;
    border-radius: 8px;
}

#pollenmain h1 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 18px;
    font-weight: bold;
}

.normaltext {
    font-size: 17px;
    line-height: 1.45;
}

a {
    color: #003e7e;
    text-decoration: underline;
}

a:visited {
    color: #4b0082;
}

a:hover {
    color: #001f4d;
    text-decoration: underline;
}

a:focus,
button:focus {
    outline: 3px solid #005ea8;
    outline-offset: 3px;
}

.report-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.action-separator {
    color: #111111;
}

.link-button {
    background-color: #f5f8fc;
    color: #003e7e;
    border: 1px solid #7a9cc6;
    border-radius: 4px;
    padding: 3px 12px;
    margin: 0 4px;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    vertical-align: baseline;
}

.link-button:hover {
    background-color: #e8f1fb;
    color: #001f4d;
    border-color: #005ea8;
}

.link-button:focus {
    outline: 3px solid #ffbf47;
    outline-offset: 2px;
}

.link-button:active {
    background-color: #d7e8f8;
}

.data-message {
    border: 1px solid #cccccc;
    padding: 5px;
}

.pollen-table {
    width: 95%;
    margin: 24px auto 18px;
    border-collapse: collapse;
    border: 1px solid #cccccc;
}

.pollen-table th,
.pollen-table td {
    padding: 10px 14px;
    text-align: center;
}

.pollen-table thead th {
    background-color: #fbfaea;
    font-weight: bold;
    border-bottom: 1px solid #cccccc;
}

.pollen-table tfoot td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.info-link-block {
    margin: 10px auto 30px;
    width: 50%;
    text-align: left;
}

.subscription-text {
    width: 85%;
    margin: 20px auto 10px;
    text-align: left;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 768px) {
    #pollenmain {
        padding: 0 12px 24px;
    }

    .pollen-table,
    .info-link-block,
    .subscription-text {
        width: 100%;
    }

    .pollen-table {
        font-size: 15px;
    }

    .pollen-table th,
    .pollen-table td {
        padding: 8px;
    }
    
    .pollen-table caption {
    font-weight: bold;
    margin-bottom: 8px;
}

    .report-actions {
        display: flex;
        flex-wrap: wrap;
    }
}

.report-actions a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

#pollenmain a {
    color: #003e7e;
    text-decoration: underline !important;
}

#pollenmain a:visited {
    color: #4b0082;
}

#pollenmain a:hover,
#pollenmain a:focus {
    color: #001f4d;
    text-decoration: underline !important;
}