/**
 * CorkBoard Studio — Writer Mobile Fixes (Merged Build)
 * Autocomplete dropdown polish + script lock banner.
 * Does NOT suppress #writer-mobile-hub (phaseB8 owns that hub).
 *
 * © 2025 Jack Allen. All Rights Reserved.
 */

/* ── Autocomplete dropdown ──────────────────────────────────────────────── */
#ac-dropdown {
  max-height: 220px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  font-size: 0.8rem;
}

.ac-item-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px 2px;
  color: var(--muted, #9ca3af);
  border-bottom: 1px solid var(--line, #e5e7eb);
}

.ac-item {
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.08s;
}

.ac-item:hover,
.ac-item.ac-active {
  background: rgba(37,99,235,0.09);
  color: var(--brand, #2563eb);
  font-weight: 600;
}

body.dark .ac-item:hover,
body.dark .ac-item.ac-active {
  background: rgba(96,165,250,0.15);
  color: #93c5fd;
}

/* ── Script lock banner ─────────────────────────────────────────────────── */
#lock-banner {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #f8fafc;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
#lock-banner.visible {
  display: flex;
}

/* ── Fountain tool items ────────────────────────────────────────────────── */
.tools-item {
  display: block;
  width: 100%;
  padding: 8px 14px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--ink, #1e293b);
}
.tools-item:hover {
  background: var(--hover, #f1f5f9);
}
