html.afTabletMode {
  --af-touch-target: 42px;
}

html.afTabletMode button,
html.afTabletMode [role="button"],
html.afTabletMode select {
  min-height: var(--af-touch-target);
}

html.afTabletMode input[type="range"] {
  min-height: 32px;
}

html.afTabletMode .track,
html.afTabletMode .timeline,
html.afTabletMode canvas {
  touch-action: none;
}

html.afTabletMode button,
html.afTabletMode [role="button"],
html.afTabletMode input,
html.afTabletMode select {
  -webkit-tap-highlight-color: transparent;
}

html.afTabletMode .bottomBar button,
html.afTabletMode .transport button,
html.afTabletMode .transportBtn,
html.afTabletMode .mbtn {
  min-width: var(--af-touch-target);
}

@media (orientation: portrait) {
  html.afTabletMode body::before {
    content: "Rotate your tablet to landscape for the full AirForge workspace.";
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    box-sizing: border-box;
    background: #020910;
    color: #22d8ff;
    font: 800 18px/1.35 system-ui, sans-serif;
    text-align: center;
  }
}
