:root {
    --PRIMARY: var(--TEAL);
    --SECONDARY: var(--CERULEAN);
    --ACCENT: var(--GOLDENROD);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    font-weight: normal;
}

main {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    margin: 15px auto;
    max-width: 1600px;
    padding: 0 10px;
}

.content {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 65%;
    margin-right: 15px;

}

.content>div {
    margin-top: 25px;
}

.content h1 {
    margin-top: 15px;
}

.sidebar>div {
    margin-top: 25px;
}

.sidebar {
    flex-basis: 15rem;
    flex-grow: 1;
    min-width: calc(35%-15px);
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description {
    font-family: 'Helvetica', 'Arial', sans-serif;
    /* display:flex; */
    flex-wrap: wrap;
    align-items: center;
    margin-right: 15px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--PRIMARY);
}

.description h1 {
    font-size: 20px;
    font-weight: bold;
}

.description p {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 1.5rem;
}

.description ul {
    margin-top: 10px;
    margin-left: 30px;
}

.description ul li {
    padding-left: 5px;
}

/* Table */
.table_header {
    border-top: 4px solid var(--PRIMARY);
    margin-bottom: 2px;
}

.table_header p {
    position: relative;
    z-index: -1;
    background: var(--PRIMARY);
    color: #fff;
    font-weight: bold;
    width: fit-content;
    padding: 8px;
    margin-bottom: 5px;
    border-bottom: 4px solid var(--ACCENT);
    border-right: 2px solid var(--ACCENT);
    border-end-end-radius: 15px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td {
    width: 30%;
}

th {
    background-color: var(--CORNFLOWER);
    color: #fff;
}

th,
td {
    text-align: left;
    padding: 8px;
    width: 30%;
}

.dataset-table tr th,
.dataset-table tr td {
    text-align: center;
    white-space: nowrap;
}

.dataset-table tr th:first-of-type,
.dataset-table tr td:first-of-type {
    text-align: left !important;
}

tr:nth-child(even) {
    background-color: #ccffff
}

.download-button {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    cursor: pointer;
    color: var(--PRIMARY);
    font-weight: bold;
}

.download-button i {
    margin-right: 8px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.download-button a {
    width: 100%;
    text-decoration: none;
    color: var(--PRIMARY);
    display: flex;
    justify-content: flex-end;
}

.download-button:hover a {
    color: var(--SECONDARY);
}

@media only screen and (max-width: 520px) {
    .download-button {
        justify-content: center;
    }

    .download-button p {
        display: none;
    }

    .download-button a {
        justify-content: center;
    }
}

#archivedDatasets {
    width: 100%;
    margin-top: 20px;
}

/* Collapsible */
.collapsible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--PRIMARY);
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    margin-bottom: 2px;
}

.collapsible i {
    font-size: 20px;
    pointer-events: none;
}

.collapsible.active,
.collapsible:hover {
    background-color: var(--SECONDARY);
}

.collapsible-content {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out;
}

.top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    margin: auto;
    width: 100%;
}

.imageholder {
    display: flex;
    flex-basis: 20rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 4px solid var(--PRIMARY);
}

#booklet {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 12px;
    /* background: var(--PRIMARY); */
    /* background-image: linear-gradient(45deg, var(--TEAL), var(--CERULEAN), var(--CORNFLOWER)); */
}

/* Banner */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: calc(100% + 15px);
    margin: 15px 0 0 -15px;
    display: flex;
    background-color: var(--PRIMARY);
    border-top: 4px solid var(--ACCENT);
    border-bottom: 4px solid var(--ACCENT);
}

.card {
    margin: 10px;
    flex: 1 1 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--CORNFLOWER);
    text-align: center;
    max-width: 125px;
}

.card p {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .6);
}

.card i {
    font-size: 35px;
    padding: 15px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    border: 4px solid var(--ACCENT);
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

/* 
.icon:hover{
    cursor: pointer;
    opacity: .95;
    border: 4px double var(--ACCENT);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.icon:hover i{
    color: var(--LIGHT);
} 
*/

/* Top buttons */

.topButtons {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.topButtons button {
    all: unset;
    position: relative;
    display: block;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.5s;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
    background: #105C78;
    color: #fff;
    border: 2px solid #00ADDC;
}

.topButtons button>i {
    margin-right: 6px;
}

.topButtons button:hover {
    border: 2px solid #105C78;
    color: #105C78;
    background: #fff;
}