/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/


html, body {
    height: auto!important;
}

body {
    margin-bottom: 50px;
}


.text-info,
.text-primary {
    color:rgb(51, 51, 51)!important;
}

p {
    line-height: 140%;
}

.ls-label-question {
    font-size: 2rem;
}
/* Basis-Styling für alle Radio-Button-Labels */
label.btn.btn-primary {
    position: relative;
    border: 2px solid #6c757d; /* mittelgrau */
    background-color: #f8f9fa; /* sehr helles Grau */
    color: #495057; /* dunkelgrau Schrift */
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

/* Hover-Zustand */
label.btn.btn-primary:hover {
    background-color: #e2e6ea;
    border-color: #5a6268;
    color: #343a40;
}

/* Aktiver/ausgewählter Zustand */
label.btn.btn-primary.active {
    background-color: #6c757d; /* Bootstrap "secondary" Grau */
    color: #fff;
    font-weight: bold;
    border: 3px solid #343a40; /* dunkler Rahmen */
    box-shadow: 0 0 10px rgba(108, 117, 125, 0.6); /* weichere graue Umrandung */
}

/* Optional: Häkchen-Symbol bei aktivem Button */
label.btn.btn-primary.active::after {
    content: "✓";
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.2rem;
    color: #fff;
}

/* Leichte Skalierung beim Klick */
label.btn.btn-primary.active {
    transform: scale(1.03);
}

.ls-label-question {
    font-size: 1.3rem;
}