.interactive-container {
  display: flex;
  gap: 10px;
  background: #f3e5f5;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  min-height: 100px;
  align-items: center;
}
.interactive-item {
  background: #9c27b0;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}
.control-group {
  background: white;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.control-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}
.control-group input, .control-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}