/* texte.css */
/* Layout für #texte im Stil kompakter Pinnwand-Einträge */
#texte {
    background-color: #fff;
    color: #1f1c24;
    padding: 30px 40px;
    margin: 0px auto;
    max-width: 900px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 13.5px;
}

#texte #theorietitel {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1f1c24;
    text-align: left;
}

#texte p {
    margin-bottom: 14px;
    text-align: justify;
}

#texte sup {
    font-size: 0.75em;
}

#texte #theorieliteratur {
    font-size: 0.85em;
    color: #555;
    margin-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 12px;
}

#texte #theoriebutton {
    text-align: right;
    margin-top: 22px;
}

#texte #theoriebutton img {
    width: 110px;
    transition: transform 0.2s ease;
}

#texte #theoriebutton img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 800px) {
    #texte {
        padding: 22px;
        font-size: 12.5px;
    }
}

/* Globale Link-Farben */
a {
    color: #db3d64;
    text-decoration: underline;
}

a:hover {
    color: #c12d56;
}
* Stil für Zitate im Textbereich */
#texte .zitat {
  font-style: italic;
  background-color: #f8f8f8;
  border-left: 3px solid #db3d64;
  padding: 15px 20px;
  margin: 25px auto;
  max-width: 800px;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
}

#texte .zitatquelle {
  display: block;
  font-style: normal;
  font-size: 0.9em;
  text-align: right;
  color: #555;
  margin-top: 8px;
}

#texte .bild-zentriert {
  text-align: center;
  margin: 25px auto;
}

#texte .bild-zentriert img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

#texte .bild-untertitel {
  font-size: 0.85em;
  color: #666;
  margin-top: 8px;
}
#texte .tabelle-zentriert {
  text-align: center;
  margin: 30px auto;
}

#texte table {
  border-collapse: collapse;
  margin: 0 auto;
  width: auto;
  font-size: 14px;
}

#texte td {
  border: 1px solid #ccc;
  padding: 6px 12px;
  text-align: center;
}

#texte #dunkelb2 {
  background-color: #1f1c24;
  color: white;
  font-weight: bold;
}
.hover-zoom-large {
  position: relative;
  display: inline-block;
}

/* Verstecktes Originalbild */
.hover-zoom-large .hover-large {
  display: none;
  position: absolute;
  top: 0;
  left: 105%; /* bleibt rechts vom Icon */
  z-index: 10;
  border: 2px solid #ccc;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  max-width: 600px;
}

/* Bild erscheint beim Hover */
.hover-zoom-large:hover .hover-large {
  display: block;
}

/* Optional: Icon float rechts */
.hover-zoom-large img.float-right {
  float: right;
  cursor: pointer;
}