body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.5;
    color: #24292f;
    background-color: #ffffff;
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
header {
    background-color: #2a6505;
    color: white;
    padding: 2rem;
}
header h1 {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    border-bottom: none;
    padding: 0;
    font-size: 2em;
}
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
a.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #0566c2;
    text-decoration: none;
}
a.back-link:hover {
    text-decoration: underline;
}
table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    overflow: hidden;
}
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #d0d7de;
}
th {
    background-color: #f2f2f2;
    font-weight: 600;
}
td:first-child {
    font-weight: 600;
    width: 150px;
}
tr:last-child th,
tr:last-child td {
    border-bottom: none;
}
tr:hover {
    background-color: #e3f2fd;
}
a {
    text-decoration: none;
    color: #0566c2;
}
a:hover {
    text-decoration: underline;
}
.footer {
    background-color: #2a6505;
    color: #ffffff;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif;
    padding: 2rem 1rem;
}

.footer .grid {
    display: grid;
    gap: 1.5rem;
}

@media screen and (min-width: 36rem) {
    .footer .grid {
        grid-template-columns: repeat(8, 1fr);
        padding-inline: 1.5rem;
    }
}

@media screen and (min-width: 68rem) {
    .footer .grid {
        grid-template-columns: repeat(3, 1fr);
        padding-inline: 2rem;
    }
}

.footer .col {
    display: flex;
    flex-direction: column;
}

.footer h2 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 0.5rem 0;
}

.footer p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer a:hover {
    color: #000000;
}

.footer .icon {
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.5;
}

.footer .icon--size-6 {
    font-size: 1.5rem;
}

.footer svg {
    inline-size: 1em;
    fill: currentColor;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    width: 90px;
    text-transform: uppercase;
    text-decoration: none;
}
.status-badge.pass {
    background: #28a745;
    color: white;
}
.status-badge.fail {
    background: #dc3545;
    color: white;
}
.status-badge.unknown {
    background: #6f42c1;
    color: white;
    width: 110px;
}

.catalog-link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
