/* Centered one-column layout */
body {
    width: 80%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color:antiquewhite;
  
}

/* Skip link */
.skip {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
}

.skip:focus {
    top: 0;
}

.logo-skip {
    color: black;
}

.logo-skip:visited {
    color: rgb(122, 177, 223);
}


.hidden {
    display: none;
}


nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:visited {
    color:  rgb(122, 177, 223);
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #333;
    padding: 8px;
    text-align: left;
}

caption {
    font-weight: bold;
    margin-bottom: 10px;
}