/* static/css/civil/bar-bending-schedule-calculator.css */
.visualization-container {
  height: 300px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  position: relative;
}

#reinforcementCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-container {
  height: 250px;
  position: relative;
}

.advanced-options {
  transition: all 0.3s ease;
}

.advanced-toggle {
  cursor: pointer;
  user-select: none;
}

.advanced-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.advanced-content.show {
  max-height: 500px;
}

.bar-shape {
  display: inline-block;
  padding: 2px 8px;
  background: #e9ecef;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
}

@media (max-width: 768px) {
  .visualization-container {
    height: 200px;
  }
  
  .chart-container {
    height: 200px;
  }
}