/* ===================================================
   🌐 GLOBAL IWF STYLE
=================================================== */

body {
    background-color: #f5f6f8;
    color: #575759;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* ===================================================
   📦 CARD INTREBARI (O SINGURA CASUTA)
=================================================== */

.ls-question {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* TEXT INTREBARE */
.ls-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #575759;
    margin-bottom: 20px;
}

/* ===================================================
   🔘 SCALE ORIZONTAL (1–5 ALINIAT)
=================================================== */

/* container raspunsuri */
.ls-answers {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* fiecare optiune */
.ls-answers .answer-item {
    flex: 1;
    text-align: center;
}

/* label = buton */
.ls-answers .answer-item label {
    display: block;
    background: #f1f2f5;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #575759;
}

/* hover */
.ls-answers .answer-item label:hover {
    background: #e6d0e3;
}

/* selectat */
.ls-answers input[type="radio"]:checked + label {
    background: #a3228e;
    color: #ffffff;
}

/* radio ascuns */
.ls-answers input[type="radio"] {
    display: none;
}

/* ===================================================
   🔘 BUTOANE (NEXT, SUBMIT)
=================================================== */

button,
.btn {
    background-color: #a3228e;
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

button:hover,
.btn:hover {
    background-color: #8c1c78;
}

/* ===================================================
   📊 PROGRESS BAR
=================================================== */

.progress-bar {
    background-color: #a3228e;
}

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

@media (max-width:768px) {

    .ls-answers {
        flex-direction: column;
    }

    .ls-answers .answer-item {
        width: 100%;
    }

    .ls-answers .answer-item label {
        width: 100%;
    }
}
/* === SURVEY LIST PAGE - Logo IWF === */
svg.ls-logo {
    display: none !important;
}
div[aria-label="LimeSurvey Logo"] {
    background: url("/upload/themes/survey/iwf-theme/files/iwf_logo.png") no-repeat center center !important;
    background-size: contain !important;
    min-height: 220px !important;
    min-width: 550px !important;
    display: block !important;
    margin: 0 auto !important;
}

/* === Ascunde footer LimeSurvey === */
footer[role="contentinfo"] {
    display: none !important;
}
