/* ── BLINK MODAL ── */
.custom-prompt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-prompt-modal .modal-content {
    background: var(--bg2);
    border: 1px solid var(--border-mid);
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 520px;
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
}

.custom-prompt-modal h3 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--text-dim);
    margin-bottom: 14px;
    font-family: var(--font-ui);
}

.custom-prompt-modal textarea.input-field {
    width: 100%;
    min-height: 120px;
    margin-bottom: 14px;
    resize: vertical;
    background: var(--bg3);
    border: 1px solid var(--border-mid);
    border-radius: 5px;
    padding: 9px 10px;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 13px;
    outline: none;
    line-height: 1.5;
}

.custom-prompt-modal textarea.input-field:focus {
    border-color: var(--accent);
}

.custom-prompt-modal .button-group {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
