/* Basic reset */
body {
  margin: 0;
  font-family: sans-serif;
  background: black;
  color: white;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* UI dropdown */
#p5js-widget-ui {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
}

#p5js-sketch-select {
  padding: 10px 50px 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: bold;
  background: rgba(0,0,0,0.8);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 8l3 3 3-3" stroke="white" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px 24px;
}

#p5js-sketch-select:focus {
  outline: 2px solid #fff;
  box-shadow: 0 0 0 2px #fff, 0 4px 16px rgba(0,0,0,0.3);
}

/* Canvas container */
#p5js-sketch-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  display: block;
  margin: auto;
}