/* General App Styles */
.cbca-virtual-placement-react-app {
  font-family: sans-serif;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

.app-header {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  text-align: center;
}

.app-main {
  display: flex;
  min-height: 80vh;
}

/* Palette Styles */
.palette-container {
  width: 25%;
  min-width: 200px;
  border-right: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
  overflow-y: auto;
}

.artwork-palette h3 {
  margin-top: 0;
  text-align: center;
}

.artwork-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artwork-item {
  border: 1px solid #ddd;
  padding: 5px;
  text-align: center;
  cursor: grab;
}

.artwork-item img {
  max-width: 100%;
  height: auto;
}

/* Stage Styles */
.stage-container {
  width: 75%;
  padding: 10px;
}

.virtual-placement-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px dashed #ccc;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.placeholder-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #888;
  font-size: 1.2em;
}

.stage-controls {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #ccc;
}

/* Placed Artwork Styles */
.placed-artwork {
  position: absolute;
  cursor: move;
  border: 2px solid #3498db;
}

.placed-artwork:hover {
  border-color: #f1c40f;
}

.remove-artwork-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  text-align: center;
}


/*# sourceMappingURL=index.css.map*/