/* Shared pop-out panel — Studio Admin + Domain View */
.ps-popout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,31,46,0.3);
  z-index: 200;
  display: none;
  justify-content: flex-end;
}
.ps-popout-overlay.open { display: flex; }
.ps-popout-panel {
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(15,31,46,0.12);
  display: flex;
  flex-direction: column;
  animation: psPopIn 0.2s ease-out;
  transform: translateX(0);
}
@keyframes psPopIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.ps-popout-hdr {
  height: 54px;
  background: #0F1F2E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  flex-shrink: 0;
}
.ps-popout-title { font-size: 14px; font-weight: 700; }
.ps-popout-close {
  background: transparent; border: none; color: #fff; font-size: 20px;
  cursor: pointer; line-height: 1; padding: 4px 8px;
}
.ps-popout-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ps-popout-foot {
  padding: 12px 20px;
  border-top: 1px solid #F0F4F7;
  display: none;
  gap: 8px;
}
.ps-popout-section h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8A9BB0;
  margin-bottom: 8px;
}
.ps-popout-row {
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #F0F4F7;
}
.ps-popout-sig {
  display: flex; gap: 8px; padding: 8px 0; border-bottom: 1px solid #F0F4F7;
  font-size: 12px;
}
.ps-popout-sig .bar { width: 3px; border-radius: 2px; flex-shrink: 0; }
.ps-popout-sig .bar.r { background: #E8511A; }
.ps-popout-sig .bar.a { background: #F59E0B; }
.ps-popout-sig .bar.g { background: #6BAE8A; }
.ps-popout-btn {
  display: inline-block; padding: 8px 14px; border-radius: 6px; font-size: 12px;
  font-weight: 600; text-decoration: none; cursor: pointer; border: none;
}
.ps-popout-btn.primary { background: #6BAE8A; color: #fff; }
.ps-popout-btn.ghost { background: #F0F4F7; color: #0F1F2E; margin-left: 8px; }
.ps-popout-btn.approve { background: #6BAE8A; color: #fff; }
.ps-popout-btn.decline { background: transparent; color: #E8511A; border: 1px solid #FECACA; margin-left: 8px; }
.ps-popout-health-bar {
  height: 6px; background: #F0F4F7; border-radius: 3px; margin-top: 6px; overflow: hidden;
}
.ps-popout-health-bar div { height: 100%; border-radius: 3px; }
