
/*----------------------------------------------------------------*/

/* MAIN CONTAINER */
.result-wrapper {
    max-width: 720px;
    margin: 60px auto;
    padding: 50px 40px;
    background: #f5f3f1; /* light inner background */
    border-radius: 18px;
    text-align: center;
}

/* SUBTITLE */
.result-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #8b8b8b;
    margin-bottom: 25px;
}

/* SCORE CIRCLE */
.result-circle {
    width: 95px;
    height: 95px;
    border: 3px solid #2e4756;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #2e4756;
    font-weight: 600;
}

/* TITLE */
.result-title {
    font-size: 34px;
    color: #2e4756;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.result-desc {
    font-size: 15px;
    color: #5f6b73;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 35px;
}

/* CARDS */
.result-card {
    background: #e9e3dd; /* beige card */
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    text-align: left;
    border: 1px solid #d8d2cc;
}

/* CARD TITLE */
.result-card h3 {
    font-size: 16px;
    color: #2e4756;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* DOT */
.result-card .dot {
    width: 8px;
    height: 8px;
    background: #2e4756;
    border-radius: 50%;
    display: inline-block;
}

/* CARD TEXT */
.result-card p {
    font-size: 14px;
    color: #5f6b73;
    line-height: 1.6;
}

/* HIGHLIGHT CARD */
.result-card.highlight {
    background: #dbe2e8; /* blue-grey highlight */
    border: 1px solid #c7d0d8;
}

/* BUTTONS */
.result-buttons {
    margin-top: 35px;
}

/* OUTLINE BUTTON */
.btn-outline {
    padding: 10px 22px;
    border: 1px solid #2e4756;
    background: transparent;
    color: #2e4756;
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* PRIMARY BUTTON */
.btn-primary {
    padding: 10px 22px;
    background: #0e2230;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* HOVER EFFECTS */
.btn-primary:hover {
    background: #091923;
}

.btn-outline:hover {
    background: #2e4756;
    color: #fff;
}

/*-------------------------------------------------------------*/

.qp-admin-wrapper {
    background: #f8f9fb;
    padding: 20px;
    border-radius: 10px;
}

/* Question Card */
.qp-question-block {
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Question Input */
.qp-question-block input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

/* Options Wrapper */
.options-wrapper > div {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

/* Option Inputs */
.options-wrapper input {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-size: 13px;
}

.options-wrapper input[type="text"] {
    flex: 2;
}

.options-wrapper input[type="number"] {
    flex: 1;
}

/* Buttons */
.qp-question-block button {
    margin-top: 10px;
    background: #007cba;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.qp-question-block button:hover {
    background: #005a8d;
}

/* Add Question Button */
#qp-builder > button {
    background: #1d2327;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

#qp-builder > button:hover {
    background: #000;
}