html,
body {
  margin: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

.skope-header {
  height: 72px;
  background: #e30613;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 32px;
  box-sizing: border-box;
  font-weight: 600;
}

.brand-title {
  font-size: clamp(18px, 2vw, 30px);
}

.parts-viewer {
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 24px;
  box-sizing: border-box;
}

.parts-viewer svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

#html-tooltip {
  position: fixed;
  display: none;
  z-index: 9999;
  background: #ffffe1;
  border: 1px solid #000;
  padding: 4px 8px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #000;
  pointer-events: none;
  white-space: nowrap;
}
