.shelf-lookup { display: grid; gap: 14px; }
.shelf-lookup-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.shelf-lookup-head h3 { margin: 0 0 6px; }
.shelf-lookup-head p { margin: 0; }
.shelf-lookup-reset { white-space: nowrap; }
.shelf-lookup-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.shelf-lookup-form input { min-width: 0; width: 100%; }
.shelf-lookup-results { min-height: 48px; }
.shelf-lookup-summary { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 13px 15px; border: 1px solid var(--border, #30384a); border-radius: 12px; background: color-mix(in srgb, var(--panel, #1d2332) 86%, #3b82f6); }
.shelf-lookup-summary span { font-weight: 800; overflow-wrap: anywhere; }
.shelf-lookup-summary strong { color: var(--muted, #c4cbd8); font-size: .9rem; text-align: right; }
.shelf-lookup-list { display: grid; gap: 8px; margin-top: 10px; }
.shelf-lookup-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 15px; border: 1px solid var(--border, #30384a); border-radius: 12px; background: var(--panel, #1d2332); }
.shelf-lookup-item > div { min-width: 0; display: grid; gap: 3px; }
.shelf-lookup-item strong { font-size: 1rem; }
.shelf-lookup-item span { color: var(--muted, #c4cbd8); overflow-wrap: anywhere; }
.shelf-lookup-item b { flex: 0 0 auto; white-space: nowrap; color: var(--accent, #f5a623); }
.shelf-lookup-empty, .shelf-lookup-error { padding: 14px; border-radius: 12px; background: var(--panel, #1d2332); }
.shelf-lookup-error { color: #ff949e; }
@media (max-width: 640px) {
  .shelf-lookup-head { display: grid; }
  .shelf-lookup-reset { justify-self: start; }
  .shelf-lookup-form { grid-template-columns: 1fr; }
  .shelf-lookup-form .btn { width: 100%; }
  .shelf-lookup-summary { display: grid; gap: 5px; }
  .shelf-lookup-summary strong { text-align: left; }
  .shelf-lookup-item { align-items: flex-start; display: grid; gap: 6px; }
}
