

body, html {
        width: 100%;    
        height: 100%;
        margin: 0;
        font-family: "Cresta-Regular", sans-serif;
        font-weight: 400;
        font-style: normal;
        background-color: #f3f3f3;
        color: #e7e7e7 !important;
        display: flex;
        flex-direction: column;
    }

    .header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-height: 60px;
        display: flex;
        align-items: center;
        background-color: #b04453;
        z-index: 2;
    }
    .header .logo {
        height: 40px;
        margin-right: 15px;
        margin-left: 15px;
    }

    .header .title {
        font-family: 'Trebuchet MS', sans-serif;
        flex: 1;
    }

    .content-container {
        font-family: Arial, sans-serif;
        padding: 4%;
        padding-top: 20px;
        padding-bottom: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .content-container h1 {
        color: #333;
    }
    .content-container p {
        font-size: 16px;
    }
    #content {
        display: flex;
        flex-direction: column;
    }

    .searchbar {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
        width: 100%;
        margin-top: auto;
        padding-top: 20px;
    }
    .searchbar input {
        flex: 1;
        max-height: 50px;
        border: 1px solid grey;
        background: #f1f1f1;
        font-size: 16px;
        width: 100%;
        outline-width: 0;
        padding-left: 15px
    }
    .searchbar input:focus-visible {
        outline: none;
    }
    .searchbar button {
        width: 15%;
        max-width: 80px;
        height: 50px;
        outline-width: 0;
        border: 1px solid transparent;  
        background-color: #b04453;
    }

    .speech-bubble 
    {
        position: relative;
        background: #2b2a35;
        padding: 15px 20px;
        border-radius: 15px;
        display: inline-block;
        margin-left: 20px; /* Platz für den Pfeil links lassen */
        margin-bottom: 15px;
        max-width: 80%;
        min-height: 22px
    }

    /* Der Pfeil, der nach links zeigt */
    .speech-bubble::after 
    {
        content: '';
        position: absolute;
        left: -10px;      /* Schiebt den Pfeil links aus der Box heraus */
        top: 30px;         /* Vertikale Zentrierung */
        transform: translateY(-50%); 
        
        /* Dreieck-Logik für "nach links" */
        border-width: 12px 12px 12px 0; /* Oben, Rechts, Unten, Links */
        border-style: solid;
        border-color: transparent #2b2a35 transparent transparent; /* Rechts ist gefärbt */
    }

    .speech-bubble-right 
    {
        background: #b04453;
        margin-right: 20px; /* Platz für den Pfeil rechts lassen */
        margin-left: auto;
        max-width: 80%;
    }/* Der Pfeil, der nach links zeigt */
    .speech-bubble-right::after 
    {
        right: -10px;      /* Schiebt den Pfeil rechts aus der Box heraus */
        left: auto;
        
        /* Dreieck-Logik für "nach links" */
        border-width: 10px 0 10px 10px; /* oben, rechts, unten, links */
        border-color: transparent transparent transparent #b04453;
    }


    a, a:link, a:visited, a:hover, a:active, a:focus, a:any-link {
        color: #e7e7e7;
    }

    .result_source_element, .accordion-header, .accordion-button, .accordion-button:not(.collapsed), .accordion-button:focus {
        color: #e7e7e7;
        background-color: #2b2a35;
        border: none;
        outline: none !important;
        box-shadow: none;
    }
    .result_source_element {
        border: 1px solid white;
    }
    .accordion-button::after {
        background-image: var(--bs-accordion-btn-active-icon);
        filter: brightness(0) invert(1);
    }
    .accordion-body {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    
    .footerlandshut {
        font-size: 12px !important;
        line-height: 1.3;
        margin: 0;
        margin-top: 10px;
        color: #8c8c8c !important;
        flex-basis: 100%;
        text-align: center;
    }
    .footerlandshutatag {
        color: #8c8c8c !important;
    }

    @keyframes laodingspin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}