.behaviour-question {
    max-width: 1000px;
    margin: 50px auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

/* TOP STATEMENTS */
.statements {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.statement {
    width: 40%;
    font-size: 16px;
    color: #333;
}

.statement.left {
    text-align: left;
}

.statement.right {
    text-align: right;
}

/* ONE SINGLE SCALE LINE */
.scale-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* LEFT & RIGHT GROUPS */
.scale {
    display: flex;
    gap: 40px;
}

.scale.left {
    justify-content: flex-start;
}

.scale.right {
    justify-content: flex-end;
}

/* EACH OPTION */
.scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #777;
}

/* RADIO STYLE */
.scale input[type="radio"] {
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #bbb;
    border-radius: 50%;
    margin-bottom: 8px;
    cursor: pointer;
}

.scale input[type="radio"]:checked {
    background: #666;
    border-color: #666;
}
/* ===============================
   Behaviour Question Layout
=============================== */

.ppa-behaviour-card {
    margin: 40px 0;
}

.ppa-question {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

/* Row holding left + right scale */
.ppa-scale-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* Left / Right containers */
.ppa-scale-side {
    display: flex;
    gap: 40px;
}

/* Individual option */
.ppa-scale-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #555;
}

/* Label text ABOVE radio */
.ppa-scale-text {
    margin-bottom: 8px;
    text-align: center;
}

/* Radio styling */
.ppa-scale-item input[type="radio"] {
    transform: scale(1.2);
    cursor: default;
}

/* Result mode lock */
.result-mode input[type="radio"] {
    pointer-events: none;
}

/* Mobile safety */
@media (max-width: 768px) {
    .ppa-scale-row {
        flex-direction: column;
        gap: 20px;
    }
}
