/* Simulation Template Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  /* padding: 20px; */
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header {
  background: #007bff;
  color: white;
  padding: 20px;
  text-align: center;
}

.header h1 {
  margin: 0 0 10px 0;
  font-size: 24px;
}

.header p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}

.simulation-area {
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.show-explanation-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.show-explanation-btn:hover {
  background: #218838;
}

.simulation-placeholder {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}
