.img-200 {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0.25rem;
}
.heading-square {
    display: inline-block;
    background-color: #3ebd62;
    margin-right: 10px;
    vertical-align: middle;
}
h2 .heading-square {
    height: 1em;
    width: 1em;
}
.btn-custom {
    background-color: #3ebd62 !important;
    border-color: #3ebd62 !important;
    color: #fff;
    font-weight: bold;
}
h3 {
    margin-top: 0.5em;
    margin-bottom: 1em;
    color: #3ebd62;
}
h4 {
    margin-top: 0.5em;
    margin-bottom: 0.8em;
    color: #3ebd62;
}
.markdown-link {
    word-break: break-all;
}
ul, ol {
    margin-bottom: 1em;
}
.mb-2 {
    margin-bottom: 0.5em;
}
.bible-verse {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #3ebd62;
    margin: 20px 0;
    font-style: italic;
}
.bible-reference {
    font-weight: bold;
    color: #3ebd62;
}
.content-section {
    margin-bottom: 2rem;
}
.back-link {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.nav-item {
    margin-right: 15px;
}
.question-emphasis {
    font-weight: bold;
    color: #2c5530;
}
.navigation-buttons {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}
.chapter-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.chapter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.chapter-number {
    background-color: #3ebd62;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}


.sermon-card {
    background-color: #f0f0f0;
    border: none;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.sermon-card .sermon-title {
    padding-top: 10px; 
}
.sermon-title {
    padding-top: 10px; 
}

.sermon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sermon-card h2, .sermon-card h3 {
          padding-top: 0px; 
        }

.sermon-description {
    text-align: justify;
    line-height: 1.4;
}
.download-button {
    margin-top: 15px;
}
.intro-section, .overview-intro, .summary-intro {
    background-color: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3ebd62;
    margin-bottom: 30px;
}
.sermon-card-header {
    padding-top: 5px;
    padding-bottom: 5px;
}
.custom-header {
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}
.green-box-heading {
    color: #fff;
    background-color: #3ebd62;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
}
.box-with-heading {
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}
.file-link {
    margin-right: 15px;
    margin-bottom: 5px;
    display: inline-block;
}
.format-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #3ebd62;
    margin-bottom: 20px;
}
.plan-description {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.footer-spacing {
    margin: 100px 0 50px 50px;
}
.info-card {
    background-color: #f0f0f0;
}




 /* Stil für den Container des Aufklappfelds */
    .accordion {
        width: 100%;
        max-width: 600px; /* Maximale Breite festlegen */
        margin: 20px auto; /* Zentrieren und Abstand hinzufügen */
        border: 1px solid #ccc;
        border-radius: 8px;
        overflow: hidden; /* Stellt sicher, dass die Ecken abgerundet bleiben */
        font-family: sans-serif;
    }

    /* Stil für den klickbaren Titel (das <summary> Element) */
    .accordion summary {
        font-size: 1.2rem;
        font-weight: bold;
        padding: 16px;
        cursor: pointer;
        display: flex; /* Für die Ausrichtung des Pfeils */
        justify-content: space-between; /* Titel links, Pfeil rechts */
        align-items: center;
        background-color: #f7f7f7;
        list-style: none; /* Standard-Pfeil des Browsers entfernen */
    }

    /* Pfeil-Symbol hinzufügen und animieren */
    .accordion summary::after {
        content: '▼';
        font-size: 0.8rem;
        transition: transform 0.2s ease-in-out;
    }

    /* Pfeil drehen, wenn das Feld geöffnet ist */
    .accordion details[open] summary::after {
        transform: rotate(180deg);
    }
    
    /* Hover-Effekt für den Titel */
    .accordion summary:hover {
        background-color: #e9e9e9;
    }

    /* Stil für den Inhalt, der aufgeklappt wird */
    .accordion .content {
        padding: 16px;
        border-top: 1px solid #ccc;
        background-color: #fff;
    }