/* ── PSS Spell Check panel ─────────────────────────────────────────── */

.pss-sc-panel {
    display: none;
    margin-top: 4px;
    background: #fff8f8;
    border: 1px solid #f5c6c6;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
    line-height: 1.5;
    box-sizing: border-box;
}

.pss-sc-header {
    font-weight: 600;
    color: #c0392b;
    margin-bottom: 5px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pss-sc-checking {
    color: #999;
    font-style: italic;
    font-size: 11px;
}

.pss-sc-error {
    padding: 4px 0;
    border-bottom: 1px solid #fde8e8;
}
.pss-sc-error:last-child {
    border-bottom: none;
}

.pss-sc-word {
    font-weight: 700;
    color: #c0392b;
}

.pss-sc-msg {
    color: #444;
}

.pss-sc-suggestions {
    margin-top: 3px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.pss-sc-sugg-label {
    color: #888;
    font-size: 11px;
}

.pss-sc-fix-btn {
    background: #e8f4ea;
    border: 1px solid #82c785;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 11px;
    cursor: pointer;
    color: #2d6a2f;
    font-family: inherit;
    line-height: 1.4;
}
.pss-sc-fix-btn:hover {
    background: #c3e6cb;
    border-color: #5aab5e;
}
