/* Keep only essential custom styles that aren't covered by Bootstrap */
body {
  background-color: #f8f9fa;
  color: #333;
}
#canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}

#canvas-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  #canvas {
    max-width: 100%;
    max-height: calc(100vh - 200px); /* Account for buttons and spacing */
  }

  #canvas-buttons {
    position: static;
    margin-bottom: 1rem;
  }
}

/* Slider styling */
.slider-container {
  margin-bottom: 1rem;
}

.slider-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.slider-row label {
  min-width: 150px;
}

.description {
  margin-top: 5px;
}
