/* WPBot Q&A Tree styles ------------------------------------------------ */

.qcld-qa-msg .qcld-qa-intro {
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.4;
}

.qcld-qa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

/* Our own button styling (independent of the plugin's wildcard class,
   so plugin click handlers do NOT hijack our buttons). */
.qcld-qa-buttons .qcld-qa-btn {
    display: inline-block;
    margin: 0;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #d9d9e3;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.3;
    color: #2b6cb0;
    cursor: pointer;
    white-space: normal;
    max-width: 100%;
    transition: all .15s ease;
    text-align: center;
}
.qcld-qa-buttons .qcld-qa-btn:hover {
    background: #f0f4fb;
    border-color: #b9c4dd;
}

/* Back button: visually a bit lighter than normal option buttons. */
.qcld-qa-buttons .qcld-qa-back {
    color: #555;
}
.qcld-qa-buttons .qcld-qa-back::before {
    content: "\2190"; /* left arrow */
    margin-right: 4px;
}

.qcld-qa-answer {
    line-height: 1.5;
    white-space: pre-wrap;
}

.qcld-qa-linkwrap {
    margin-top: 8px;
}

.qcld-qa-link {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 16px;
    background: #2b6cb0;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
}
.qcld-qa-link:hover {
    background: #24558c;
}
