blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
:root {
  --sidebar-width: 300px;
  --main-pad-x: 10px;
}

/* The sidebar menu */
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: var(--sidebar-width); /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #00ff0d; /* Black */
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: auto; /* Enable vertical scroll */
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #000000;
  display: block;
  cursor: pointer;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  background-color: #00c50a;
}


.main {
  margin-left: var(--sidebar-width); /* Same as the width of the sidebar */
  padding: 0px var(--main-pad-x);
}
.main figure {
  width: 90%;
  max-width: 90%;
  max-height: 90vw;
  margin: 1em auto;
}
.main figure img {
  max-width: 100%;
  max-height: 90vw;
  object-fit: contain;
  display: block;
  border: #000000 solid 1px;
}

table {
  border-collapse: collapse;
  width: 100%;
  padding-left: 0.5%;
  padding-right: 0.5%;
}
th, td {
  text-align: left;
  padding: 5px;
}
#article-list tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
#article-list tbody tr {
  transition: background-color .1s, transform .1s;
}
#article-list tbody tr:hover {
  background-color: #00c50a5c;
  transform: scale(1.01);
}
#article-list th {
  border-bottom: 1px solid #000;
}

#article-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
}
.article-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: transform .2s, background-color .2s, box-shadow .2s;
}
.article-grid-item:hover {
  transform: scale(1.1);
  background-color: #00c50a;
  box-shadow: 0 0 0 2em #00c50a;
}

.article-image-div {
  aspect-ratio: 1/1;
  width: 19vw;
  height: 20vw;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-image-div img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: grey solid 1px;
}
.article-title {
  font-size: 1.2em;
  text-align: center;
  margin-top: 0.5em;
}
#floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999; /* Bleibt über allen anderen Elementen */

  width: 60px;
  height: 60px;
  border-radius: 10%;
  background-color: #007bff;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.header {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  font-size: 20px;
}
.header * {
  font-size: 20px;
}
.header label {
  font-size: 25px;
}

.header h1 {
  font-size: 60px;
}
#search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#search-form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
#search-form div {
  display: block;
}
#search-form input[type=checkbox] {
  height: 20px;
  width: 20px;
}