/* public/assets/app.css */

:root{
  --bg:#0b1220;
  --panel:#0f1930;
  --card:#111a2e;
  --text:#e8edf6;
  --muted:#9fb0d0;
  --line:#223152;
  --accent:#4ea1ff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:linear-gradient(180deg,#0b1220,#070c16);
  color:var(--text);
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background:rgba(10,16,30,.7);
  backdrop-filter: blur(8px);
  position:sticky;
  top:0;
  z-index:10;
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
}

.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:2px 8px;
  border-radius:999px;
  margin-left:8px;
}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.idBox{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:12px;
  background:rgba(11,18,32,.55);
}

.layout{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:14px;
  padding:14px;
}

.panel{
  background:rgba(17,26,46,.7);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  min-height:calc(100vh - 92px);
}

.stageWrap{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.stageHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  background:rgba(17,26,46,.5);
  border:1px solid var(--line);
  border-radius:16px;
}

.productName{
  font-size:18px;
  font-weight:700;
}

.sub{
  font-size:12px;
  color:var(--muted);
}

.stageCard{
  background:rgba(17,26,46,.7);
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
}

.stageSvg{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(78,161,255,.10), transparent 55%),
    rgba(255,255,255,0.02);
}

h2,h3{margin:8px 0 10px 0}

.mt{margin-top:18px}

.row{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:8px 0;
}

.lbl{
  font-size:12px;
  color:var(--muted);
}

.search,.select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
