body {
    color: #111;
    user-select: none;
}

a {
    color: blue;
    text-decoration: none;
    border: none;
}

img {
    pointer-events: none;
}

.single-image {
    padding: 0 1em;
}

.two-images {
    padding: 0 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2em;
}

.two-images img {
    background-color: #fafafa;
    box-shadow: 1px 2px 2px 2px #ccc;
    width: calc(50% - 10px);
    position: relative;
}

.two-images img .img-label {
    position: absolute;
    top: 1em;
    left: 1em;
    z-index: 1000;
}

.overview {
    display: flex;
    flex-direction: column;
}

.overview div:nth-child(even) {
    margin-bottom: 1em;
}

.overview-type {
    font-weight: bold;
    color: black;
}


details {
    margin-bottom: 0.5rem;
}

summary {
    font-weight: 600;
    font-size: 1.2rem;
}

.description {
    margin-left: 1em;
}

figcaption {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

details img {
    max-width: min(600px, 100%);
}

.post-image {
    max-width: 100%;
    border-radius: 10px;
}


table a {
    text-decoration: none;
    color: blue;
    border-bottom: none;
    cursor: pointer;
}

@media screen and (min-width: 1681px) {
    article {
        min-width: 480px;
    }    
}


#year_selection {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 3em;
}

#year_selection label {
    display: flex;
    flex-direction: column;
    align-items: stretch;    
    font-weight: bold;
    font-size: 1.2rem;
}

#select_year {
    display: inline-block;
    width: fit-content;
    height: fit-content;
    border: 2px solid blue;
}

#select_year:focus, #select_year:active {
    outline: none;
    box-shadow: none;
}

.pdf-year-label {
    display: inline;
    font-size: 0.7rem;
}


.a-link-button {
    color: blue !important;
    box-shadow: none;
    font-size: 0.8rem;
    padding: 0;
    height: fit-content;
    line-height: 1rem;
}

#pdfModal {
    display: none;
    position: fixed;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

#pdfFrame {
    width: 100%;
    height: 100%;
    border: none;
}

#btnClose {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1001;
    background-color: white;
}

.qr-link {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.qr-link img {
    width: 150px;
    height: 150px;
}
.qr-link span {
    font-size: 0.7rem;
}

.details-image {
    width: 100%;
    max-width: 720px;
}

.details-large-image {
    width: 80%;
}

.construct-toc li {
    list-style-type: none;
    font-size: 0.9rem;;
}
.construct-toc li::before {
  content: "▶";
  color: gray;
  margin-inline-end: 1ch;
}