/* ─── Copyable Prompt Boxes ─────────────────────────────────
   Add to neve-child/css/prompt-boxes.css
   ─────────────────────────────────────────────────────────── */

.prompt-box {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.prompt-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #f3f5f7;
    border-bottom: 1px solid #e0e0e0;
}

.prompt-box__title {
    font-size: 13px;
    font-weight: 600;
    color: #37474F;
    margin: 0;
}

.prompt-box__tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    background: #e8f5e9;
    color: #2e7d32;
}

.prompt-box__text {
    padding: 16px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.prompt-box__footer {
    padding: 0 16px 12px;
    display: flex;
    justify-content: flex-end;
}

.prompt-box__copy {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #37474F;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.prompt-box__copy:hover {
    background: #f3f5f7;
    border-color: #ccc;
}

.prompt-box__copy.copied {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #81c784;
}
