/* PMX_SMART_V2_POLISH_SAFE_V1 */
.pmx-smart-topbar{
  position:sticky;
  top:0;
  z-index:999;
  margin:0 0 14px 0;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  box-shadow:0 10px 28px rgba(15,23,42,.07);
}
.pmx-smart-topbar-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin:0 0 8px 0;
}
.pmx-smart-topbar-title{
  font-size:15px;
  font-weight:700;
  color:#0f172a;
  margin-inline-end:8px;
}
.pmx-smart-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:#334155;
  font-size:12px;
  line-height:1;
  white-space:nowrap;
}
.pmx-smart-chip strong{
  color:#0f172a;
  font-weight:700;
}
.pmx-smart-chip.ok{
  background:#ecfdf5;
  border-color:#a7f3d0;
  color:#065f46;
}
.pmx-smart-chip.warn{
  background:#fff7ed;
  border-color:#fed7aa;
  color:#9a3412;
}
.pmx-smart-chip.info{
  background:#eff6ff;
  border-color:#bfdbfe;
  color:#1d4ed8;
}
.pmx-smart-subtext{
  color:#64748b;
  font-size:12px;
  line-height:1.5;
}
.pmx-smart-file-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  padding:8px 12px;
  border-radius:12px;
  background:#f8fafc;
  border:1px dashed #cbd5e1;
  color:#334155;
  font-size:12px;
}
.pmx-smart-file-chip b{
  color:#0f172a;
}
.pmx-smart-progress{
  height:8px;
  width:100%;
  margin-top:10px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
}
.pmx-smart-progress > span{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#2563eb 0%,#14b8a6 100%);
  transition:width .25s ease;
}
body.pmx-smart-topbar-mounted{
  scroll-padding-top:88px;
}
