/******************
    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
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  
  /*********************************************************
 HALBE JUGENDUMFRAGE
 LimeSurvey 6.17.6
 Vanilla / Bootswatch
**********************************************************/

/* ===== HINTERGRUND ===== */

body {
    background:
        radial-gradient(
            circle at top,
            #1e293b 0%,
            #0f172a 60%,
            #020617 100%
        ) !important;

    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    padding-top:20px;
}

.privacy
{ 
    display:none;
}
/* ===== NAVIGATION ===== */

.navbar {
    background: rgba(15,23,42,0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    display:none;
}

.navbar-brand img.logo {
    max-height: 55px;
}


/* ===== CONTAINER ===== */

#outerframeContainer {
    max-width: 900px;
    margin: auto;
}


.space-col
{
     margin-top:0;
}

/* ===== TITEL ===== */

.group-title, .well {

    background:
        linear-gradient(
            rgba(15,23,42,.65),
            rgba(15,23,42,.65)
        ),
        url("/upload/unsplash.jpeg");

    background-size: cover;
    background-position: center;

    border-radius: 24px;
    border-width:0;
    padding: 50px 20px;

    margin-bottom: 35px;

    color: white !important;

    font-size: 1.5rem !important;

    font-weight: 800 !important;

    text-align: center;

    box-shadow:
        0 10px 35px rgba(0,0,0,.35);
}
.group-title
{
    display:none;
}


/* ===== FRAGEKARTEN ===== */

.question-container {
    background: rgba(30,41,59,.95) !important;
    border-radius: 24px !important;
    padding: 28px !important;
    margin-bottom: 28px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 0 10px 35px rgba(0,0,0,.35) !important;
    transition: .25s ease;
}

.question-container:hover {
    transform: translateY(-2px);
}


/* ===== FRAGETEXT ===== */

.question-text {
    color: #ffffff !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin-bottom: 20px;
}


/* ===== PFLICHTFELD ===== */

.text-danger,
.asterisk {
    color: #22c55e !important;
}


/* ===== JA / NEIN ===== */

.yesno-button {
    display: flex !important;
    gap: 16px;
    width: 100%;
}

.yesno-button .btn {
    flex: 1;
    min-height: 82px;
    border-radius: 20px !important;
    border: none !important;
    background: #334155 !important;
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    transition: all .25s ease;
}

.yesno-button .btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6
    ) !important;
    box-shadow: 0 8px 25px rgba(59,130,246,.35);
}

.yesno-button .btn-check:checked + .btn,
.btn-check:checked + .btn {
    background: linear-gradient(
        135deg,
        #06b6d4,
        #8b5cf6
    ) !important;

    color: #ffffff !important;

    box-shadow:
        0 0 25px rgba(139,92,246,.45);
}


/* ===== CHECKBOXEN ===== */

.checkbox-list .btn {
    min-height: 72px;
    border-radius: 18px !important;
    border: none !important;
    background: #334155 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: .25s ease;
}

.checkbox-list .btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6
    ) !important;
}

.checkbox-list .btn-check:checked + .btn {
    background: linear-gradient(
        135deg,
        #06b6d4,
        #8b5cf6
    ) !important;
}


/* ===== SONSTIGES ===== */

#label-433456X2X7other-other {
    background: linear-gradient(
        135deg,
        #f97316,
        #ea580c
    ) !important;
}


/* ===== TEXTFELDER ===== */

textarea.form-control,
input.form-control {

    background: rgba(255,255,255,.06) !important;

    border: 2px solid rgba(255,255,255,.08) !important;

    border-radius: 18px !important;

    color: #ffffff !important;

    font-size: 1.05rem;

    padding: 18px;
}

textarea.form-control {
    min-height: 180px;
}

textarea.form-control:focus,
input.form-control:focus {

    border-color: #06b6d4 !important;

    box-shadow:
        0 0 15px rgba(6,182,212,.35) !important;
}


/* ===== ABSENDEN ===== */

#ls-button-submit {

    background: linear-gradient(
        135deg,
        #06b6d4,
        #8b5cf6
    ) !important;

    border: none !important;

    border-radius: 20px !important;

    min-height: 65px;

    min-width: 220px;

    font-size: 1.15rem;

    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(139,92,246,.35);
}

#ls-button-submit:hover {
    transform: translateY(-2px);
}


/* ===== LINKS ===== */

a {
    color: #60a5fa !important;
}

a:hover {
    color: #93c5fd !important;
}


/* ===== MOBILE ===== */

@media (max-width:768px) {

    body {
        padding-top: 20px !important;
    }

    .group-title {
        font-size: 1.2rem !important;
    }

    .question-text {
        font-size: 1.2rem !important;
    }

    .yesno-button .btn {
        min-height: 75px;
        font-size: 1rem !important;
    }

    .checkbox-list .btn {
        min-height: 70px;
        font-size: .95rem !important;
    }

    .question-container {
        padding: 20px !important;
    }

    #ls-button-submit {
        width: 100%;
    }
}

/* ===== FIX: Checkbox-Ausrichtung ===== */
.checkbox-list .form-check {
    padding-left: 0 !important;
}
.checkbox-list .list-unstyled {
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.checkbox-list .bootstrap-buttons-div {
    padding-left: 6px !important;
}

/* ===== PFLICHT-MODAL ===== */

#bootstrap-alert-box-modal .modal-content {
    background: rgba(30,41,59,.98) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 35px rgba(0,0,0,.5) !important;
    color: #ffffff !important;
}

#bootstrap-alert-box-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    min-height: 40px;
}

#bootstrap-alert-box-modal .modal-body {
    font-size: 1.05rem;
    padding: 28px !important;
    color: #e2e8f0 !important;
}

#bootstrap-alert-box-modal .modal-footer {
    border-top: 1px solid rgba(255,255,255,.08) !important;
    gap: 12px;
    padding: 16px 28px !important;
}

#bootstrap-alert-box-modal .btn-outline-secondary {
    border-radius: 14px !important;
    border: 2px solid rgba(255,255,255,.15) !important;
    color: #ffffff !important;
    background: #334155 !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    transition: .25s ease;
}

#bootstrap-alert-box-modal .btn-outline-secondary:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
}

#bootstrap-alert-box-modal .btn-close {
    filter: invert(1);
}

.modal-backdrop {
    background-color: #0f172a !important;
}