body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: #111;
  color: white;
}

/* TOP BAR */
.topbar {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #1a1a1a;
}

/* CANVAS */
#canvas {
  height: calc(100vh - 60px);
  background: linear-gradient(to right, purple, blue);
  position: relative;
  overflow: hidden;
}

/* TEXT */
.text-box {
  position: absolute;
  cursor: move;
  white-space: nowrap;
  -webkit-text-stroke: 0px black;
}

.selected {
  outline: 2px dashed yellow;
}

.editing {
  border: 1px solid white;
  padding: 2px;
}

/* RESIZE */
.resize-handle {
  width: 10px;
  height: 10px;
  background: white;
  position: absolute;
  bottom: -5px;
  right: -5px;
  cursor: nwse-resize;
}

/* SIDE PANEL */
.panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 280px;
  background: #1e1e1e;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.panel label {
  font-size: 14px;
  color: #ccc;
}

.panel input,
.panel select,
.panel button {
  width: 100%;
}

/* Hidden state */
.hidden {
  transform: translateX(100%);
}