/* Full-screen iPhone shell. Insets only here (WKWebView is edge-to-edge). */
html.native,
html.native body { background: #f3f5f8; color: #172033; margin: 0; }
html.native .topbar { display: none; }
html.native #user.page { padding: 0; max-width: none; }
html.native #user > h1,
html.native #user > .subtitle { display: none; }
html.native .phone-wrap { padding: 0; }
html.native .phone {
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
html.native .phone-head {
  padding-top: calc(18px + env(safe-area-inset-top, 47px));
}
html.native .appbody {
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 34px));
}
html.native .send { pointer-events: none; }
html.native .send.ready { pointer-events: auto; }
html.native .queue {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html.native .queue:empty { display: none; }
html.native .clip {
  width: 100%;
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 15px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 44px 1fr 36px;
  gap: 10px;
  align-items: center;
}
html.native .clip .label {
  margin: 0;
  font-size: 11px;
  color: #7a8595;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
html.native .clip .dur { color: #172033; font-weight: 650; font-size: 15px; margin-top: 2px; }
html.native .clip-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2ff;
  color: #4169e1;
  font-weight: 800;
  font-size: 12px;
}
html.native .clip-del {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #d84b4b;
  font-size: 18px;
  font-weight: 700;
}
html.native .appbody:has(.queue:not(:empty)) .send { margin-top: 18px; }
