@charset "utf-8";
@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://aist.fh-hagenberg.at/wp-content/fonts/work-sans/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBiAJoI3ZKyHqQvhf.woff) format('woff');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
body {
    font: 100%/1.4 "Work Sans", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
}
/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, aside, article, figure {
    display: block;
}
header, footer {
    padding: 0.1rem 0.1rem 0.1rem 4rem;
    color: white;
}
header {
    background-color: #1e4e79;
}
footer {
    background-color: #292929;
}
a {
    color: #4169e1;
    text-decoration-color: #4169e1;
    text-decoration-line: none;
}
.iframe-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

iframe {
    width: 80%;
    height: 600px;
    margin-top: 20px;
    border: none;
}

.select-container {
    font-size: 1.5rem;
    display: flex; /* This makes the text and dropdown align in a single line */
    justify-content: center;
    margin: 20px 0;
  }
#yearSelection {
    display: inline-block; /* Aligns the dropdown next to the text */
    font-size: 1rem;
    margin-left: 5px; /* Spacing between the text and dropdown */
    /* Custom width for the dropdown */
    width: auto; /* Adjust based on content */
    padding: .375rem 1.75rem .375rem .75rem; /* Bootstrap-like padding */
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    height: calc(2.25rem + 2px); /* Align height with Bootstrap's form elements */
}