﻿body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 2rem;
    background: #fafafa;
}


#header {
    display: grid;
    grid-template-areas:
        "logo title"
        "logo dropdown";
    grid-template-columns: auto 1fr;
    align-items: center;
    
}

#logo {
    grid-area: logo;
    color: white;
}

#title {
    grid-area: title;
    text-align: center;
}



#filter {
    margin: 1rem 0;
    padding: 0.5rem;
    width: 100%;
    max-width: 500px;
    font-size: 1rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    background: white;
}

th, td {
    border: 1px solid #ddd;
    padding: 0.6rem;
    vertical-align: top;
}

th {
    background: #f0f0f0;
    cursor: pointer;
}

tr:hover {
    background: #f9f9f9;
}

a {
    color: #004b74;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

i.fa-regular
{
    margin-right: 10px;
}
