/* BULK-OPS 2026-05-27 · NH Bulk Action Modal styles */
.nh-bam-wrap { position: fixed; inset: 0; z-index: 99500; display: flex; align-items: center; justify-content: center; padding: 20px; animation: nh-bam-in 0.15s ease-out; }
@keyframes nh-bam-in { from { opacity: 0; } to { opacity: 1; } }
.nh-bam-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.nh-bam-modal { position: relative; background: var(--surface, #1e293b); color: var(--text-1, #e2e8f0); border: 1px solid var(--border, #334155); border-radius: 10px; padding: 18px; width: 100%; max-width: 560px; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.nh-bam-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border, #334155); }
.nh-bam-title { font-size: 14px; font-weight: 700; }
.nh-bam-close { background: transparent; border: none; color: var(--text-3, #94a3b8); cursor: pointer; font-size: 18px; padding: 4px 8px; border-radius: 4px; }
.nh-bam-close:hover { background: var(--surface-2, #243248); color: var(--text-1, #e2e8f0); }
.nh-bam-body { display: flex; flex-direction: column; gap: 12px; }
.nh-bam-field { display: flex; flex-direction: column; }
.nh-bam-field label { font-size: 11px; color: var(--text-3, #94a3b8); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.4px; font-weight: 600; }
.nh-bam-input { padding: 8px 10px; background: var(--surface-2, #243248); border: 1px solid var(--border, #334155); border-radius: 6px; color: var(--text-1, #e2e8f0); font-size: 13px; font-family: inherit; }
.nh-bam-input:focus { outline: none; border-color: var(--accent, #3b82f6); box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }
.nh-bam-keys-list { display: flex; flex-wrap: wrap; gap: 4px; max-height: 80px; overflow-y: auto; padding: 4px; background: var(--surface-2, #243248); border-radius: 6px; }
.nh-bam-key-chip { font-family: ui-monospace, monospace; font-size: 10.5px; background: var(--surface-3, #2d3a52); color: var(--accent, #3b82f6); padding: 2px 6px; border-radius: 3px; font-weight: 600; }
.nh-bam-err { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); color: #ef4444; padding: 8px 10px; border-radius: 6px; font-size: 12px; }
.nh-bam-progress { padding: 8px 10px; background: var(--surface-2, #243248); border-radius: 6px; font-size: 12px; text-align: center; }
.nh-bam-progress-bar { height: 3px; background: linear-gradient(90deg, var(--accent, #3b82f6), transparent); animation: nh-bam-prog 1.2s linear infinite; border-radius: 2px; margin-bottom: 6px; }
@keyframes nh-bam-prog { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.nh-bam-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border, #334155); }
.nh-bam-btn { padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid var(--border, #334155); background: var(--surface-2, #243248); color: var(--text-1, #e2e8f0); }
.nh-bam-btn:hover { background: var(--surface-3, #2d3a52); }
.nh-bam-btn.primary { background: var(--accent, #3b82f6); border-color: var(--accent, #3b82f6); color: white; }
.nh-bam-btn.primary:hover { background: #2563eb; }
.nh-bam-btn.primary.danger { background: #ef4444; border-color: #ef4444; }
.nh-bam-btn.primary.danger:hover { background: #dc2626; }
.nh-bam-btn:disabled { opacity: 0.5; cursor: not-allowed; }
