/* BUCHSCHMIED 24-11-24 */

@font-face {
    font-family: frakturFont;
    src: url('fraktur.regular.ttf');
}

@font-face {
    font-family: frakturFontBold;
    src: url('fraktur.bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: suetterlinFont;
    src: url('sutterlin-HJZ.ttf');
}

body {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    /* font-family: Arial, sans-serif; */
    font-size: 21px;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

.xmasSchmuck {
    margin: 0;
    position: absolute;
    top: 125px;
    left: 0;
    width: 15%;
    aspect-ratio: 250 / 212;
    min-width: 150px;
    background: url('/grafiken/xmas_schmuck_oben.png') no-repeat center center/cover;
}

.content a {
    color: #D52B1E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #0038A8;
    text-decoration: underline;
}

.alert-box {
    background-color: #ffeeba;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    margin: 20px auto;
    text-align: justify;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-box strong {
    color: #d9534f;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('../grafiken/kopf_bg.jpg') no-repeat center center/cover;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* min-height: 85px; */
}

.header-title {
    color: #fff;
    margin: 0;
    padding: 0;
    text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
    text-align: center;
}

.headerTextFraktur {
    font-size: calc(1.2em + 1.2vmin);
    font-family: 'frakturFont';
}

.headerTextSuett {
    font-family: 'suetterlinFont';
    font-size: calc(1.1em + 0.8vmin);
    line-height: 8px;
}

.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.1);
    }
}

.heart {
    color: #D52B1E;
    display: inline-block;
    animation: heartbeat 5.5s infinite;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 7px 20px;
    position: fixed;
    top: 85px;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

nav a, .dropbtn {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    background: none;
    border: none;
    font-size: calc(0.5em + 1vmin);
    font-family: Arial, sans-serif;
    cursor: pointer;
}

nav a:hover, .dropbtn:hover {
    background-color: #ddd;
    border-radius: 5px;
}

nav a.logout {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #ffffff;
}

nav a.logout:hover {
    background-color: #555555;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn:after {
    content: " ▼";
    font-size: 12px;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }
    .nav-links, .dropdown-content {
        display: none;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 20px;
    }
    nav a, .dropbtn {
        font-size: calc(0.7em + 1vmin);
    }
}

nav a.active, .dropdown .dropbtn.active {
    color: #005BAC;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-weight: bold;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover, .dropdown .dropbtn:hover {
    background-color: #ddd;
    border-radius: 5px;
}

.content {
    padding: 20px;
    margin-top: 130px;
    margin-bottom: 50px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.contentSchmaler {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.landing-page-margin {
    margin-top: 90px;
}

.content p, .media {
    text-align: justify;
    hyphens: auto;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(213, 43, 30, 0.7);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 10px 20px rgba(213, 43, 30, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(213, 43, 30, 0);
    }
}

.buttonNewsletter {
    background-color: #D52B1E;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    margin-right: 45px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: normal;
    line-height: 1.4;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: pulse-button 5.5s infinite;
}

footer {
    background: url('../grafiken/kopf_bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.footer-links, .footer-social-media, .footer-additional-links {
    margin: 10px;
    align-items: center;
}

.footer-item, .social-icon {
    display: inline-block;
    color: #fff;
    margin: 5px 10px;
    text-decoration: none;
}

.social-icon img {
    width: 30px;
    height: 30px;
}

.footer-legal {
    margin-top: 20px;
    font-size: 14px;
    width: 100%;
    padding-top: 10px;
    border-top: 2px solid #fff;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}

.media div.image-container {
    width: 40%;
    /* max-width: 350px; */
    max-width: 200px;
    margin-bottom: 20px;
    margin-right: 25px;
    float: left;
    text-align: center;
}

.float-right div.image-container {
    float: right;
    margin-left: 25px;
    margin-right: 0;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.image-container img.round, img.round {
    border-radius: 50%;
}

.image-container::after, .banner-image-container::after {
    content: "";
    display: block;
    clear: both;
}

.banner-image-container {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 50px auto;
    text-align: center;
}

.banner-image-container img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.bildergalerie img {
    max-height: 600px;
}

.image-source {
    display: block;
    font-size: 0.8em;
    color: #666;
    padding: 2px 0;
}

@media (max-width: 768px) {
    .media div.image-container {
        display: block;
        margin: 20px auto;
        width: 80%;
        float: none;
    }
    .banner-image {
        width: 80%;
    }
    .content {
        margin-top: 100px;
    }
    .landing-page-margin {
        margin-top: 90px;
    }
}

.center, .center p {
    text-align: center !important;
}

.blocksatz {
    text-align: justify !important;
}

.rechtsBuendig {
    text-align: right !important;
}

.linksBuendig {
    text-align: left !important;
}

.schmaler900 {
    max-width: 900px;
    margin-left:auto;
    margin-right:auto;    
}

.media, .content-section, .image-container span, .banner-image-container {
    clear: both;
}

.trennLinie {
    width: 80%;
    border: 0;
    height: 1px;
    background-color: #999;
    margin: 50px auto;
}

.contentWrapperMehrereSpalten {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.contentDreiSpaltenBox {
    flex: 1 1 calc(33.33% - 20px);
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 10px;
    margin: 10px 0;
    min-width: 380px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.contentDreiSpaltenBox img {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.contentZweiSpaltenBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    padding: 20px 40px;
    text-align: center;
    border-radius: 10px;
    margin: 10px 0;
    min-width: 320px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1000px) {
    .rechtsBuendigZweiSpaltenBox {
        align-items: flex-end;
        text-align: right;
    }
    .linksBuendigZweiSpaltenBox {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 999px) {
    .contentWrapperMehrereSpalten {
        flex-direction: column;
        align-items: center;
    }
    .contentDreiSpaltenBox, .contentZweiSpaltenBox {
        flex: 1 0 100%;
        max-width: 90%;
        margin: 10px auto;
    }
    .contentZweiSpaltenBox {
        text-align: center !important;
        padding: 0 20px;
        margin: 0;
        min-width: 100%;
    }
}

.center-button {
    text-align: center;
    margin: 95px 0;
}

.general-button-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #FFA500;
    border: 1px solid #d48627;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 10px;
    text-decoration: none !important;
    color: black !important;
    font-weight: normal;
    font-family: Helvetica, Arial, sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.general-button-link:hover {
    background-color: #e68a00;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.button-icon {
    width: 75px;
    height: 75px;
    margin-right: 15px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

.h1-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.separator-box {
    width: 100%;
    height: auto;
    clear: both;
    text-align: center;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-title {
    width: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../grafiken/kopf_bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.separator-title h1 {
    font-size: 22px;
}

.separator-title h2 {
    font-size: 20px;
}

.seperator-title-suett {
    font-family: 'suetterlinFont';
    font-size: 35px;
    line-height: 35px;
    margin-top: 35px;
}

.round-big-profile-image {
    width: 375px;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    max-width: 100%;
}

.author-info {
    display: flex;
    flex-direction: column;
    width: 150px;
    padding: 10px;
    margin-left: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8;
    font-size: 15px;
    align-items: center;
    text-align: center;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: block;
}

.text-info p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .h1-container {
        flex-direction: column-reverse;
        align-items: center;
    }
    .author-info {
        width: 100%;
        margin: 5px auto;
        padding: 5px 10px;
        flex-direction: row;
        text-align: left;
        font-size: calc(0.5em + 1vmin);
        align-items: center;
        box-sizing: border-box;
    }
    .profile-pic {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .text-info {
        flex-grow: 1;
    }
    .text-info p {
        margin: 0;
        padding: 5px;
        display: inline;
    }
    .info-comments {
        text-decoration: underline;
        cursor: pointer;
    }
}

.book-section {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

.books-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.books-container .book-card-link {
    flex: 1 1 calc(50% - 20px); /* Für zwei Karten pro Reihe */
    max-width: calc(50% - 20px);
    min-width: 400px;
    margin: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.books-container .book-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1300px) {
    .book-section {
        width: 90%;
    }
    .books-container .book-card-link {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

.book-image-container {
    position: relative;
}

.book-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.label-banner {
    position: absolute;
    top: 95px;
    right: -25px;
    width: 160px;
    background-color: #FFA500;
    color: white;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    transform-origin: top right;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

.book-card h4 {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

.book-card p {
    padding: 0 10px;
    height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.book-card-heigher p {
    height: 130px;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.book-card span {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #D52B1E;
    color: white;
    text-decoration: none;
}

.book-section-redirect {
    width: 90%;
    margin: 0 auto;
}

.books-container-redirect {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.books-container-redirect .book-card-link-redirect {
    flex: 1 0 50%;
    max-width: 50%;
    min-width: 350px;
    margin: 20px auto;
}

.redirectPreImage {
    position: absolute;
    width: auto;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 5;
}

@media (max-width: 768px) {
    .book-section {
        width: 90%;
    }
    .books-container {
        flex-direction: column;
        align-items: center;
    }
    .books-container .book-card-link {
        flex: 1 0 100%;
        max-width: 100%;
        margin: 20px auto;
    }
}

.related-articles {
    padding: 20px;
    background-color: #f4f4f4;
    margin-top: 40px;
}

.related-articles h3, .book-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.article-card-link {
    flex: 1 1 300px;
    max-width: 320px;
    margin: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card {
    width: 100%;
    display: block;
}

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.article-card h4 {
    padding: 10px;
}

.article-card p {
    padding: 0 10px;
    height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-card span {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #D52B1E;
    color: white;
    text-decoration: none;
}

.article-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .related-articles {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .articles-container {
        justify-content: center;
    }
    .article-card-link {
        flex-basis: 70%;
        max-width: 70%;
        margin: 20px auto;
    }
}

.hide-article {
    display: none;
}

.book-card .book-image {
    width: 100%;
    height: 335px;
    object-fit: cover;
}

.kommentar-container {
    text-align: center;
    padding: 20px 0;
    background-color: #f4f4f4;
    width: 100%;
}

.kommentarBox {
    background-color: #fff;
    padding: 20px;
    margin: 10px auto;
    width: 70%;
    text-align: justify;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.admin-name {
    font-weight: 1200;
    font-size: 16px;
    font-family: 'frakturFont';
    display: inline;
}

.admin-name img {
    vertical-align: middle;
}

.admin-name span {
    vertical-align: middle;
}

.kommentarText {
    font-style: italic;
    font-weight: 400;
    margin: 10px 0;
}

.kommentarFormName, .kommentarFormText, .kommentarFormCaptcha {
    border-radius: 8px;
    width: 70%;
    height: 25px;
    padding: 4px 0;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    color: #104e8b;
}

.kommentarFormText {
    height: 120px;
    font-style: italic;
}

#formFussWrapper {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.kommentarFormCaptcha {
    width: 50px;
}

.kommentarFormSenden {
    background-color: #D52B1E;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

.kommentarFormSenden:hover {
    background-color: #BF1E0A;
}

#statusBox {
    color: red;
    font-size: 22px;
    font-weight: medium;
    text-shadow: 1px 1px 2px black;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}

.textarea-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    resize: vertical;
}

.textarea-input:focus {
    outline: none;
    border-color: #f90;
    box-shadow: 0 0 5px #f90;
}

.sendenButton {
    background-color: #D52B1E;
    color: white;
    border: 1px solid #b52e24;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 5px 20px 5px 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 17px;
}

.sendenButton:hover {
    background-color: #a82319;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.rezensionBox {
    background-color: #f5f5f5;
    color: #000000;
    font-size: 16px;
    font-style: italic;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.rezensionBox p {
    margin: 10px 0;
}

.rezensionBox .sterne {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
}

.rezensionBox .einleitung {
    margin: 10px 0 0 0;
}

.rezensionBox .kundenstimme {
    margin: 10px 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    text-align: justify;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#countdown {
    text-align: center;
    font-size: 0.8em;
}

#countdown-time {
    display: inline-block;
    animation: pulse 2s infinite;
    font-size: 1.5em;
    color: #ff4d4d;
    text-shadow: 1px 1px #333;
}

/* Allgemeiner Bereich für Login und Passwort-Reset */
.login-section, .reset-section {
    width: 90%;
    max-width: 360px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.login-title, .reset-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Formulare für Login und Passwort-Reset */
.login-form, .reset-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.login-form input[type="email"],
.login-form input[type="password"],
.reset-form input[type="email"],
.reset-form input[type="password"] {
    padding: 10px;
    font-size: 1em;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Buttons für Login und Passwort-Reset */
.login-button, .reset-button {
    padding: 12px;
    background-color: #cc0000;
    color: white;
    border: none;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 90%;
}

.login-button:hover, .reset-button:hover {
    background-color: #a30000;
}

/* Passwort vergessen und Link-Anpassung */
.password-reset, .manage-subscription {
    margin-top: 20px;
    font-size: 1.2em;
    color: #333;
}

.reset-link, .stripe-link {
    color: #cc0000;
    text-decoration: none;
    font-size: 1em;
    display: block;
    margin-bottom: 20px;
}

.reset-link:hover, .stripe-link:hover {
    text-decoration: underline;
}

/* Erfolg-/Fehlermeldungen für Login und Passwort-Reset */
.error-message, .success-message {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1em;
    color: red;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.success-message {
    color: green;
}

/* Responsive Design für beide Formulare */
@media screen and (max-width: 768px) {
    .login-section, .reset-section {
        padding: 15px;
    }

    .login-form input[type="email"],
    .login-form input[type="password"],
    .reset-form input[type="email"],
    .login-button, .reset-button {
        font-size: 0.9em;
    }
}

/* Allgemeiner Stil für die Tabelle */
.archiv-table {
    width: 100%; /* Standardbreite auf 100%, maximiert auf großen Bildschirmen */
    max-width: 1000px; /* Maximale Breite auf großen Bildschirmen */
    margin: 40px auto;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Kopfzeile der Tabelle */
.archiv-table th {
    background-color: #333;
    color: white;
    padding: 10px;
    font-size: 1.1em;
    text-align: center;
    border: 1px solid #ddd;
}

/* Zelleninhalt der Tabelle */
.archiv-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1em;
}

/* "Thema" Spalte breiter machen */
.archiv-table th:nth-child(3), .archiv-table td:nth-child(3) {
    width: 35%; /* Thema Spalte nimmt 35% der Gesamtbreite ein */
}

/* Hover-Effekt für Tabellenzeilen */
.archiv-table tr:hover {
    background-color: #f1f1f1;
}

/* Link-Design in der Tabelle */
.archiv-table a {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}

.archiv-table a:hover {
    text-decoration: underline;
}

/* Erfolg-/Fehlermeldungen */
.error-message, .success-message {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1em;
    color: red;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.success-message {
    color: green;
}

/* Tabelle scrollbar auf kleinen Bildschirmen */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

/* Scroll-Hinweis für mobile Geräte */
.scroll-hint {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    display: none; /* Versteckt standardmäßig */
}


@media screen and (max-width: 768px) {
    .archiv-table {
        width: 800px; /* Tabelle bleibt breiter, erfordert Scrollen */
    }
    .scroll-hint {
        display: block;
    }
}






 .chart-container {
    width: 170px;
    height: 170px;
    margin: 25px auto;
    position: relative;
    text-align: center;
  }

  .chart {
    transform: rotate(-90deg); /* Startpunkt oben */
    width: 100%;
    height: 100%;
  }

  .circle-background {
    fill: none;
    stroke: #ddd; /* Hintergrund der Grafik */
    stroke-width: 12;
  }

.circle-foreground {
    fill: none;
    stroke: #4CAF50; /* Farbe der Vordergrundlinie */
    stroke-width: 12;
    stroke-dasharray: 439.82; /* Gesamtumfang des Kreises */
    stroke-dashoffset: 439.82; /* Startwert für leeren Kreis */
    transition: stroke-dashoffset 2s ease-out; /* Animation */
}

  /* Text über der Grafik */
  .percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #333;
  }

  /* Klassen zur Steuerung der Animation */
.animate {
    stroke-dashoffset: 14.16; /* Wert für 94 % */
    transition: stroke-dashoffset 2s ease-out;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 20px;
}

.stat-box {
    text-align: center;
    font-size: 24px;
    width: 150px;
    padding: 20px 0; /* Abstand oben und unten */
}

.stat-number {
    font-weight: bold;
    font-size: 28px;
    color: #4CAF50; /* Grün für die Zahlen */
}

.stat-text {
    font-size: 16px;
    color: #333; /* Schwarz für den Text */
    margin-top: 5px;
}

/*BSWP ABO EINBLICK SLIDER*/

.slider-container {
  position: relative;
  width: 95%;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  background: #000; 
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(0);
  /* Anfangszustand ohne Transition */
}
