.global-search{
  position:fixed;top:-60px;left:50%;transform:translateX(-50%);z-index:10000;
  display:flex;align-items:center;gap:8px;
  padding:8px 16px;border-radius:0 0 12px 12px;
  box-shadow:0 4px 24px rgba(0,0,0,.25);
  transition:top .3s cubic-bezier(.4,0,.2,1);
  font-family:'Segoe UI',system-ui,sans-serif;
}
.global-search.visible{top:0}
.global-search.theme-dark{
  background:#1e293b;border:1px solid rgba(99,140,210,.4);border-top:none;
}
.global-search.theme-light{
  background:#ffffff;border:1px solid #cbd5e1;border-top:none;
}
.global-search input{
  width:260px;padding:7px 12px;border-radius:6px;font-size:14px;outline:none;
  transition:border-color .2s;
}
.global-search.theme-dark input{
  background:#0f172a;color:#e2e8f0;border:1px solid rgba(99,140,210,.4);
}
.global-search.theme-dark input:focus{border-color:#3b82f6}
.global-search.theme-dark input::placeholder{color:#64748b}
.global-search.theme-light input{
  background:#f8fafc;color:#0f172a;border:1px solid #cbd5e1;
}
.global-search.theme-light input:focus{border-color:#1d4ed8}
.global-search.theme-light input::placeholder{color:#94a3b8}
#searchCount{
  font-size:12px;font-weight:600;min-width:90px;text-align:center;white-space:nowrap;
}
.global-search.theme-dark #searchCount{color:#94a3b8}
.global-search.theme-light #searchCount{color:#64748b}
.global-search button{
  width:30px;height:30px;border-radius:6px;border:none;cursor:pointer;
  font-size:14px;font-weight:700;display:flex;align-items:center;justify-content:center;
  transition:background .15s;
}
.global-search.theme-dark button{background:rgba(255,255,255,.1);color:#e2e8f0}
.global-search.theme-dark button:hover{background:rgba(255,255,255,.2)}
.global-search.theme-light button{background:#e2e8f0;color:#334155}
.global-search.theme-light button:hover{background:#cbd5e1}
.search-highlight{background:#fbbf24;color:#0f172a;border-radius:2px;padding:0 1px;scroll-margin-top:120px}
.search-highlight.current{background:#f97316;outline:2px solid #ea580c}
@media print{.global-search{display:none!important}.search-highlight{background:none;color:inherit;padding:0;outline:none}}
