/* ========================================
   INLINE WHISPER - whisper.css
   ======================================== */

/* Panel container - seamless with post */
.pcard__whisper-panel {
    border-top: 1px solid var(--color-border);
    background: var(--color-surface-hover);
}

/* Whisper input area */
.whisper-inline {
    padding: 16px 24px 20px;
}

.whisper-inline textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    resize: none;
    outline: none;
    padding: 0;
}

.whisper-inline textarea::placeholder {
    color: #4a4a55;
}

/* Footer row */
.whisper-inline__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

/* Anonymous checkbox */
.whisper-inline__anon {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 12px;
    color: #555;
}

.whisper-inline__anon input {
    width: 12px;
    height: 12px;
    accent-color: var(--color-text);
    cursor: pointer;
}

/* Send button */
.whisper-inline__send {
    background: transparent;
    color: #888;
    border: none;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    transition: color 0.1s;
}

.whisper-inline__send:hover {
    color: var(--color-text);
}

.whisper-inline__send:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Whisper button active state handled by var(--color-text) organically */
.pcard__stat--whisper.is-active {
    color: var(--color-text);
}