/* Help Site Styling */

body {
    background-color: #d3d0d0 !important;
    
    text-align: left;
    line-height: normal;
    letter-spacing: normal;
    
    color: var(--font-base);
}

.ft-size-huge {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.ft-size-large {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.ft-size-normal {
    font-size: 24px;
    font-weight: 600;
    color: #777;
    margin-bottom: 0.1rem;
}

.accordion-header {
    font-size: 24px;
}

.custom-container {
    border-radius: 11px;
    background: #fff;

    padding: 12px;
    position: relative;
    z-index: 10;

    margin-left: 30px;
    margin-top: 30px;
}


a {
    color: #5e8ffe;
}


/* NAVBAR-Farbe */
.custom-navbar {
    background-color: #5e8ffe !important;
    border-bottom: none; /* da du eine eigene Farbe nutzt */
}

/* Weißer Button in Navbar */
.custom-navbar .btn-primary {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #5e8ffe !important; /* Textfarbe passend zur Navbar */
}

/* Hover-Effekt: dezenter Hintergrund */
.custom-navbar .btn-primary:hover {
    background-color: #e9e9e9 !important;
    border-color: #e9e9e9 !important;
    color: #5e8ffe !important;
}

.card {
  border: 0.5px solid #5e8ffe; 
}

/* .card-body {
  border: 0.5px solid #596b95; 
} */

/* --- Listen --- */
.list-group-item {
  border: 1px solid #5e8ffe; 
}

/* --- Accordion --- */
.accordion-item, 
.accordion-button, 
.accordion-body {
  background-color: #fff; /* optional, falls Hintergrund angepasst werden soll */
} 

.accordion-button:focus,
.accordion-button:hover,
.accordion-button:not(.collapsed) {
 /* border-color: #596b95 !important;*/
  background-color: #fff !important;
} 


.custom-footer {
  background-color: #d3d0d0 !important; /* überschreibt bg-dark */
  color: #212529 !important;           /* Schriftfarbe */
}


.responsive-image-large {
    max-width: 50%;
    height: auto;
    margin: 20px;
}

.responsive-image-small {
    max-width: 25%;
    height: auto;
    margin: 20px;
}

/* Wenn der Bildschirm kleiner als 768px ist (z.B. auf Tablets oder Handys), wird das Bild größer */
@media (max-width: 768px) {
    .responsive-image-large {
        max-width: 100% !important;
    }

    .responsive-image-small {
        max-width: 75% !important;
    }
}