/* ============================================================
   D4W.XYZ — Base Reset & Layout
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  background: var(--bg-primary);
  color: var(--text-primary);
}

#app {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

#workspace {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  background: var(--bg-primary);
}

.hidden {
  display: none !important;
}

button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
}
