.temperatur-teilchen-container {
  padding: 20px;
}

.simulation-controls {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group label {
  font-weight: bold;
  color: #2c3e50;
}

.temperature-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.temp-value {
  font-size: 1.4rem;
  font-weight: bold;
  color: #007bff;
}

.temp-class {
  font-size: 1rem;
  color: #666;
  background: #f8f9fa;
  padding: 5px 10px;
  border-radius: 4px;
}

.simulation-area {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.particle-simulation {
  background: #f8f9fa;
  border: 3px solid #333;
  border-radius: 8px;
  padding: 10px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#particle-canvas,
#distribution-canvas {
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#distribution-canvas {
  background: #fff;
  border: 1px solid #ddd;
  margin-top: 10px;
  display: block;
}

#thermo-parameters {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

#thermo-parameters p {
  margin: 8px 0;
  color: #495057;
}

#thermo-parameters span {
  font-weight: bold;
  color: #007bff;
}

.educational-content {
  margin-top: 40px;
}

.educational-content h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.educational-content h3,
.educational-content h4 {
  color: #007bff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-card {
  background: white;
  border-left: 4px solid #007bff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3,
.info-card h4 {
  color: #007bff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-card p {
  margin: 10px 0;
}

.info-card ul {
  padding-left: 20px;
  margin: 10px 0;
}

.info-card li {
  margin: 8px 0;
}

.table-bordered {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
  padding: 12px;
  text-align: left;
}

.table-bordered th {
  background: #f8f9fa;
  font-weight: bold;
  color: #2c3e50;
}

.table-bordered tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.featurette-divider {
  margin: 40px 0;
  border-top: 1px solid #e9ecef;
}

.text-muted {
  color: #6c757d !important;
}

.text-primary {
  color: #007bff !important;
}

.text-success {
  color: #28a745 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

@media (max-width: 768px) {
  .simulation-controls {
    padding: 15px;
  }

  .temperature-display {
    flex-direction: column;
    align-items: flex-start;
  }

  .temp-value {
    font-size: 1.2rem;
  }

  #particle-canvas {
    width: 100%;
    height: auto;
  }
}