* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff; color: #1a1a2e;
}
.wrap { padding: 14px 16px 20px; }
.label { font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }

.current {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #f0fdf4; border: 1.5px solid #bbf7d0; border-radius: 10px; padding: 10px 12px; margin-bottom: 10px;
}
.current.hidden { display: none; }
.current-title { font-size: 13px; font-weight: 700; color: #15803d; }
.clear-btn {
  border: none; background: none; color: #dc2626; font-size: 11.5px; font-weight: 700; cursor: pointer;
  white-space: nowrap;
}
.clear-btn:hover { text-decoration: underline; }

.search-input {
  width: 100%; box-sizing: border-box; border: 1.5px solid #dbe0e8; border-radius: 10px;
  padding: 9px 12px; font-size: 13px; color: #1a1a2e; background: #f8fafc;
}
.search-input:focus { border-color: #2563eb; outline: none; background: #fff; }

.list { margin-top: 8px; max-height: 260px; overflow-y: auto; }
.list-item {
  padding: 9px 10px; border-radius: 8px; cursor: pointer; font-size: 12.5px; color: #1a1a2e;
  border: 1px solid transparent;
}
.list-item:hover { background: #eff6ff; border-color: #bfdbfe; }
.list-empty { padding: 14px 4px; color: #94a3b8; font-size: 12.5px; text-align: center; }

.status { margin-top: 8px; font-size: 11.5px; color: #94a3b8; min-height: 14px; }
.status.error { color: #dc2626; }
