body {
    margin: 0;
    padding: 0 0 1em 0;
    background-color: #f4f4f4;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    background-color: #f4f4f4;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: 1em;
    text-align: center;
}
.nav-links div {
    display: flex;
    gap: 1.5em;
}
.nav-links a {
    color: black;
    text-decoration: none;
    font-size: large;
    position: relative;
    padding: 1em;
}
.nav-links a:last-child::after {
    content: '';
}
.nav-links a:hover {
    text-decoration: underline;
    transform: scale(1.2);
    color: blue;
}
.nav-links a:hover::after {
    color: #034a91;
}
.nav-links a.active {
    background-color: #034a91;
    color: white !important;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: underline;
    box-shadow: 0 2px 8px rgba(3,74,145,0.08);
}
.container {
    max-width: 70%;
    margin: 1em auto;
    padding: 1em;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.alert {
    background-color: #fff3cd;
    color: #6a4d00;
}
.warning {
    background-color: #ff9800;
    color: white;
    font-weight: bold;
}
.infoDiv {
    background-color: #cee5fc;
    color: #034a91;
    font-weight: bold;
}
h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #034a91;
}
ul, ol {
    padding-left: 1.5em;
}
footer {
    padding: 0.5em 0;
    background-color: #034a91;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}
h1 a {
    text-decoration: none;
    color: #034a91;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}