*::-moz-selection {
  background: #bebebe;
  color: #5e5e5e;
}

*::selection {
  background: #bebebe;
  color: #5e5e5e;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: radial-gradient(1200px 800px at 10% 10%, #f6f8fb 0%, #e9edf3 35%, #e6eaef 100%);
  color: #24303a;
}

.app {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 36px;
  height: 100vh;
  box-sizing: border-box;
}

.canvas-card {
  border-radius: 20px;
  background: linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
  box-shadow: 14px 14px 28px rgba(150, 160, 170, 0.18), -10px -10px 24px rgba(255, 255, 255, 0.9);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.canvas-card #sketch-holder {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.tp-wrapper {
  align-self: start;
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #eef3f8 0%, #f6f9fc 100%);
  box-shadow: 10px 10px 24px rgba(150, 160, 170, 0.16), -8px -8px 20px rgba(255, 255, 255, 0.95);
  /* Tweakpane overrides */
}
.tp-wrapper .tp-header {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  color: #2b3a45;
}
.tp-wrapper .tp-footer {
  margin-top: 12px;
  font-size: 12px;
  color: #9aa6b2;
}
.tp-wrapper [class^=tp-], .tp-wrapper [class*=" tp-"] {
  box-sizing: border-box;
  font-family: inherit;
}
.tp-wrapper .tp-root {
  background: transparent;
  padding: 10px;
}
.tp-wrapper .tp-item {
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(180deg, #eef3f8 0%, #f6f9fc 100%);
  box-shadow: 6px 6px 12px rgba(150, 160, 170, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.9);
}
.tp-wrapper .tp-label {
  font-size: 12px;
  color: #3a4a55;
  margin-bottom: 6px;
  display: block;
}
.tp-wrapper .tp-slider {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tp-wrapper .tp-knob {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.06), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}
.tp-wrapper .tp-inp {
  margin-left: auto;
  min-width: 64px;
  text-align: center;
  font-weight: 600;
  background: transparent;
}
.tp-wrapper .tp-button {
  border-radius: 12px;
  padding: 9px 12px;
  cursor: pointer;
  box-shadow: 4px 4px 10px rgba(150, 160, 170, 0.08), -4px -4px 10px rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, #f7fbff, #eef5fb);
  font-weight: 600;
  border: none;
}
.tp-wrapper .tp-button:active {
  transform: translateY(1px);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.06), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.credits {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 12px;
  color: #9aa6b2;
}

@media (max-width: 980px) {
  .app {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }
  .tp-wrapper {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */