/* 工业管理 APP 原型 - 共享样式（iframe 内页面） */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --safe-top: env(safe-area-inset-top, 12px);
  --safe-bottom: env(safe-area-inset-bottom, 8px);
  --brand: #0f766e;
  --brand-dark: #0d9488;
  --surface: #f8fafc;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--surface);
}

.phone-scroll {
  min-height: 100%;
  padding-bottom: calc(72px + var(--safe-bottom));
}

.status-bar-spacer {
  height: calc(var(--safe-top) + 8px);
}

/* 隐藏 iframe 内滚动条但保留滚动（可选） */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
