/* Presentation frame around each fixed-size artboard (added by scripts/build.py). */
body.pc-page {
  margin: 0;
  min-height: 100vh;
  background: #e7eaee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-bar {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: #3a3745;
}

.pc-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d5d8dd;
  color: #1f3f7c;
  font-weight: 600;
  text-decoration: none;
}

.pc-bar a:hover { border-color: #1f3f7c; }

.pc-tag {
  font-weight: 600;
  color: #5c5866;
}

.pc-stage {
  padding: 8px 16px 40px;
  display: flex;
  justify-content: center;
}

.pc-device {
  width: var(--w);
  height: var(--h);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(20, 22, 30, 0.06), 0 12px 40px rgba(20, 22, 30, 0.12);
}

.pc-mobile .pc-device { border-radius: 28px; outline: 8px solid #1a1623; }
.pc-mobile .pc-stage { padding-top: 24px; }
.pc-web .pc-device { border-radius: 12px; }

/* On a real phone the caregiver screens fill the display, with no frame. */
@media (max-width: 430px) {
  .pc-stage { padding: 0; }
  .pc-mobile .pc-stage { padding-top: 0; }
  .pc-mobile .pc-device { border-radius: 0; outline: 0; box-shadow: none; }
  .pc-bar .pc-tag { display: none; }
}
