.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
    padding-top: 100px; /* 3rem; */
    padding-bottom: 3rem;

/*    color: #002b44; */
}



/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 32rem;
}

    .carousel-item > img {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        height: 32rem;
    }


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.marketing h2 {
    font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
}
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
}

.featurette-heading-sub {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
}

.centered-featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
    text-align: center;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .featurette-heading {
        font-size: 50px;
       /* margin-top: 7rem; */
    }

    .centered-featurette-heading {
        font-size: 50px;
        margin-top: 7rem;
    }

}

 @media (min-width: 62em) {
    .featurette-heading {
    /*    margin-top: 7rem; */
    }

    .centered-featurette-heading {
        margin-top: 7rem;
    }

}

/* NAVBAR COLOUR
-------------------------------------------------- */

nav {
    background-color: #333;
}


.btn-primary {
    color: #fff;
    background-color: #2DB994;
    border-color: #2DB994;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #218B6F;
        border-color: #218B6F
    }


.text-with-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
}

.centered-featurette-heading {
    font-size: 50px;
    margin-top: 7rem;
}



.survey-table, th, td {
    border: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

    .survey-table thead tr {
        border-bottom: 2px solid lightgray;
    }

    .survey-table tbody tr {
        border-bottom: 1px solid lightgray;
    }

.survey-page {
    display: none; /* Standardmäßig ausgeblendet */
}

.active {
    display: block; /* Nur das aktive Element sichtbar */
}

.survey-heading {
    padding-left: 10px !important; 
    padding-right: 10px !important;
    padding-bottom: 30px;
    margin-left: 0 !important; 
    margin-right: 0 !important;
}

input[type="radio"],
.survey-label {
    /* display: inline; */
    vertical-align: middle;
    padding-right: 20px !important;
}

.survey-background {
    background-color: whitesmoke;
    width: 100%; /* Hintergrund über die ganze Breite */
    padding: 10px 10px; /* Vertikale Polsterung, horizontal 0 */
}

.follow-up {
    display: block;
    margin-top: 10px; /* Abstand nach oben */
    margin-bottom: 5px; /* Abstand nach unten */
}

/*-------------------------------------------------- */

.label-bullet i::before {
    content: "▪"; /* Unicode Bullet */
    color: #2DB994; /* Adjust color if needed */
    font-style: normal; /* Prevents the bullet from being italic */
    margin-right: 5px; /* Space between bullet and text */
}

/* TOOLTIP */
/*-------------------------------------------------- */

/* Tooltip container */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* SVG icon */
.tooltip-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px;
}

/* Tooltip text (hidden by default) */
.tooltip {
    position: absolute;
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 13px;
    bottom: 125%; /* Position above text */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    /*    max-width: min(90vw, 300px); */
    white-space: normal;
    text-align: center;
    word-wrap: break-word;
}

    /* Tooltip arrow */
    .tooltip::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
        border-width: 5px;
        border-style: solid;
        border-color: black transparent transparent transparent;
    }

/* Show tooltip on hover */
.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px); /* Slight lift */
}

.option-pair {
    display: inline-flex; /* **KEY CHANGE** from inline-block to inline-flex */
    align-items: flex-start; /* Aligns input with the top of the (potentially multi-line) label.
                                Use 'center' for middle alignment. */
    margin-right: 20px;  /* Space between different option-pairs */
    margin-bottom: 8px;   /* Space below if option-pairs wrap to a new line */
    vertical-align: top;  /* Good for aligning the whole unit if it's next to other inline content */
}

.option-pair input[type="radio"],
.option-pair input[type="checkbox"] {
    margin-right: 6px;    /* Space between the actual input and the label text */
    flex-shrink: 0;     /* Prevents the input from shrinking */
    /* Adjust margin-top if needed for fine-tuned vertical alignment with the first line of text */
    margin-top: 0.15em; /* Example: You might need to tweak this or remove it */
}

.option-pair .survey-label { /* Or just .option-pair label if .survey-label isn't always there */
    white-space: normal; /* **IMPORTANT**: Allows text inside the label to wrap naturally. */
                         /* This should be the default, but good to be explicit. */
    line-height: 1.3;    /* Adjust for readability of wrapped lines */
    /* If .survey-label had padding-right for inter-option spacing, remove it here,
       as margin-right on .option-pair now handles that. */
    padding-right: 0;
}


/* remove link styling (including hover/visited) and affect all subtags */
a.plain-link,
a.plain-link:hover,
a.plain-link:focus,
a.plain-link:active,
a.plain-link:visited,
a.plain-link * { 
  color: inherit !important;
  text-decoration: none !important;
}