@charset "UTF-8";
body {
  color: black;
  background-color: white;
  font-family: monospace;
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin: 0;
  padding: 0;
}

body {
  margin: 20px;
}

/* ===== Texte & Überschriften ===== */
h1, h2, h3, .navbar {
  text-shadow: 2px 2px #acccfd;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
  line-height: 2.2rem;
}

h2, .navbar {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
  text-shadow: 1px 1px hsl(69, 87%, 35%);
}

.pagetitle {
  text-shadow: 2px 2px hsl(69, 92%, 38%);
  padding: 1px;
  margin: 1px;
}

/* ===== Standard-Elemente ===== */
hr {
  text-align: center;
  border: 1;
  color: #089fb9;
  margin: 0;
}

table, th, td {
  border: thin solid black;
  border-collapse: collapse;
}

.author {
  color: #089fb9;
  font-size: 10px;
  padding: 2px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Autor + Datum links, Share rechts */
  flex-wrap: wrap; /* falls wenig Platz */
}

.pagination, .tag-cloud {
  font-size: 14px;
  padding: 2px;
  margin: 2px;
}

.main {
  padding: 0;
}

.navbar {
  border-bottom: 1px solid #089fb9;
}

.cloudbox {
  border: 1px solid black;
  padding: 0.5rem;
  margin: 0;
}

.tag-count {
  font-size: 0.8em; /* kleiner als der Tag */
  color: #555;
  margin-left: -7px; /* enger am Tag dran */
  vertical-align: super; /* optional: leicht nach oben verschieben */
}

/* ===== Tag Cloud ===== */
.tag-cloud {
  text-align: center;
  line-height: 1;
  margin: 1em 0;
}

.tag-name {
  transition: color 0.3s ease;
}

.tag-name:hover {
  color: #111; /* Einheitliche Hover-Farbe */
}

.tag {
  text-decoration: none;
}

/* ===== Polaroid-Galerie ===== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Einzelnes Polaroid */
div.polaroid {
  background-color: rgb(245, 243, 221);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  padding: 10px 10px 25px;
  transition: transform 0.2s;
  flex: 1 1 calc(33.333% - 2rem); /* 3 Spalten Layout */
  max-width: 350px;
  min-width: 220px;
  margin-bottom: 15px;
}

/* Bild */
div.polaroid img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Beschriftung */
div.polcontainer {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 10px;
  color: #333;
}

/* Hover Effekt */
div.polaroid:hover {
  transform: translateY(-5px);
}

blockquote {
  margin: 1em 2em; /* Abstand zum Text */
  padding: 0.5em 1em; /* Innenabstand */
  border-left: 4px solid #555; /* Linie links */
  font-style: italic; /* kursiv darstellen */
  color: #333; /* Schriftfarbe */
  background: #f9f9f9; /* optional: Hintergrund */
}

/* ===== Responsive Design ===== */
/* Tablets */
@media (max-width: 900px) {
  div.polaroid {
    flex: 1 1 calc(50% - 1rem); /* 2 Spalten */
  }
}
/* Smartphones */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }
  div.polaroid {
    flex: 1 1 100%; /* 1 Spalte */
    max-width: 100%;
  }
}
.nav-item {
  margin: 1px;
  background-color: hsl(0, 0%, 85%);
}

footer a {
  color: #6c757d;
}

footer a:hover {
  color: #343a40;
  text-decoration: underline;
}

#searchResults {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 2px;
  font-size: 0.7em;
}

.list-group {
  background-color: #ffffff;
  border: #089fb9 1px solid;
}

.share-links {
  margin-top: 2em;
  font-size: 0.9em;
  border: 1px #ccff00;
}

.share-links a {
  margin-left: 0.5em;
  text-decoration: none;
}

.share-dropdown {
  margin-left: auto; /* schiebt das Dropdown nach rechts */
  border: 1px solid #e6e6e6;
  padding-left: 5px;
  padding-right: 5px;
}

.fehler {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=main.css.map */