:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: #17243a;
  background: #fffaf0;
}
* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.whiteboard-display,
.wb-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wb-logical {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  background: inherit;
  overflow: hidden;
}
.wb-object {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  overflow: visible;
}
.wb-text-content {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.wb-object > img {
  width: 100%;
  height: 100%;
  display: block;
}
.wb-shape svg,
.wb-ink svg,
.wb-line svg,
.wb-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wb-shape-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  font-weight: 800;
}
.wb-sticky-note {
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}
.wb-math {
  font-family:
    Cambria Math,
    serif;
}
.wb-number-line {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  border-top: 7px solid;
}
.wb-number-line span {
  position: relative;
  text-align: center;
}
.wb-number-line span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  height: 28px;
  border-left: 5px solid;
}
.wb-number-line b {
  display: block;
  margin-top: 24px;
}
.wb-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 36, 58, 0.2) 2px, transparent 2px),
    linear-gradient(90deg, rgba(23, 36, 58, 0.2) 2px, transparent 2px);
  background-size: 10% 10%;
  border: 4px solid;
}
.wb-table table,
.wb-table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
.wb-table td {
  border: 3px solid;
  padding: 12px;
}
.wb-ten-frame {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.wb-ten-frame span {
  display: grid;
  place-items: center;
  border: 4px solid;
}
.wb-ten-frame span:after {
  content: "";
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
}
.wb-ten-frame span.filled:after {
  background: currentColor;
}
.wb-spotlight-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 9000;
}
.wb-object.is-spotlight {
  z-index: 9001 !important;
  filter: drop-shadow(0 0 28px #fff);
}
.wb-blank {
  position: absolute;
  inset: 0;
  z-index: 9500;
}
.wb-brand {
  position: absolute;
  z-index: 10000;
  left: clamp(12px, 2vw, 34px);
  top: clamp(12px, 2vw, 30px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(8, 19, 35, 0.66);
  color: #fff;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.wb-brand[hidden],
.wb-brand [hidden] {
  display: none;
}
.wb-brand img {
  width: clamp(88px, 8vw, 144px);
  max-height: 42px;
  object-fit: contain;
}
.wb-brand > span {
  height: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.wb-brand strong,
.wb-brand small {
  display: block;
  white-space: nowrap;
}
.wb-brand strong {
  font-size: clamp(16px, 1.5vw, 27px);
}
.wb-brand small {
  font-size: clamp(9px, 0.78vw, 14px);
  opacity: 0.78;
}
.wb-connection {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 10000;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(8, 19, 35, 0.55);
  color: #fff;
  font-size: 10px;
  opacity: 0;
}
.wb-connection.is-offline {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
