/* ============================== */
/* == FELLO Expert == */
/* ============================== */

/* State of mind – sliders */
.synaptica-som-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.synaptica-som-lbl {
    font-size: 13px;
    font-weight: 100;
    color: #444;
    white-space: nowrap;
}

.synaptica-som-lbl--left {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    text-align: right;
}

.synaptica-som-lbl--right {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    text-align: left;
}

.synaptica-som-slider {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    min-width: 0;
    height: 4px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.synaptica-som-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #36e3f7;
    border: 2px solid #114c4e;
    cursor: pointer;
}

.synaptica-som-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #36e3f7;
    border: 2px solid #114c4e;
    cursor: pointer;
}

/* Tooltip */
.synaptica-som-tooltip {
    position: absolute;
    top: -28px;
    transform: translateX(-50%);
    background: #062326;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.synaptica-som-tooltip.visible {
    opacity: 1;
}

/* Q&A repeater */
.synaptica-qa-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.synaptica-qa-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.synaptica-qa-fields {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: visible;
}

.synaptica-qa-question {
    width: 100%;
    box-sizing: border-box;
}

.synaptica-qa-answer {
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

.synaptica-qa-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}

.synaptica-qa-remove:hover {
    color: #c00;
}

/* Textarea generell */
.synaptica-textarea {
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    font-weight: 100;
}

/* Narrow field (auto-initiera) */
.synaptica-field--narrow input {
    max-width: 120px;
}

/* Feedback */
.synaptica-expert-feedback {
    min-height: 24px;
    font-size: 13px;
    padding: 4px 10px;
    margin-top: 6px;
}

.synaptica-feedback--ok {
    color: #2a7a2a;
}

.synaptica-feedback--error {
    color: #c00;
}