<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Done General Styling */

.NOAALogo {
    width: 50px !important;
    height: 50px !important;
    z-index: 100;
}

.actualImage {
    height: 212px;
    width: 160px;
    /* transition: transform .2s; */
    padding: 5%;
}

#shipwatch-table img:hover.hover {
    transform: scale(2.5);
    margin-left: 110px;
    margin-right: 150px;
}

#shipwatch-table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

#shipwatch-table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

#shipwatch-table th,
#shipwatch-table td {
    padding: .625em;
    text-align: center;
    vertical-align: middle;
}

#shipwatch-table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    #shipwatch-table {
        border: 0;
    }

    #shipwatch-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    #shipwatch-table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    #shipwatch-table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    #shipwatch-table td::before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    #shipwatch-table td:last-child {
        border-bottom: 0;
    }
}

/* #shipwatch-table th:nth-child(5),
#shipwatch-table td:nth-child(5) {
    display: none;
} */</pre></body></html>