/* BRL_BTD_UI */
#brlBtdWorkbench .brl-btd-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
}
@media (min-width: 1200px){
  #brlBtdWorkbench .brl-btd-grid{
    grid-template-columns:1.05fr .95fr;
  }
}
#brlBtdWorkbench .brl-btd-kpis{
  display:grid;
  grid-template-columns:1fr;
  gap:.75rem;
}
@media (min-width: 900px){
  #brlBtdWorkbench .brl-btd-kpis{
    grid-template-columns:repeat(4,1fr);
  }
}
#brlBtdWorkbench .brl-btd-kpi{
  border:1px solid rgba(99,102,241,.18);
  border-radius:14px;
  padding:.85rem 1rem;
  background:rgba(15,23,42,.18);
}
#brlBtdWorkbench .brl-btd-switch-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  min-height:44px;
}
#brlBtdWorkbench .brl-btd-switch{
  appearance:none;
  -webkit-appearance:none;
  width:46px;
  height:26px;
  border-radius:999px;
  background:rgba(100,116,139,.35);
  border:1px solid rgba(148,163,184,.28);
  position:relative;
  cursor:pointer;
  transition:all .18s ease;
}
#brlBtdWorkbench .brl-btd-switch::after{
  content:"";
  position:absolute;
  top:2px;
  left:2px;
  width:20px;
  height:20px;
  border-radius:999px;
  background:#fff;
  transition:all .18s ease;
}
#brlBtdWorkbench .brl-btd-switch:checked{
  background:rgba(99,102,241,.9);
  border-color:rgba(99,102,241,.95);
}
#brlBtdWorkbench .brl-btd-switch:checked::after{
  left:22px;
}
#brlBtdWorkbench .brl-btd-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}
#brlBtdWorkbench .brl-btd-output{
  min-height:56px;
  white-space:pre-wrap;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:12px;
  line-height:1.5;
}
