.molekülorbitale-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;
}

.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);
}

.orbital-3d-container {
  background: #1a1a2e;
  border: 2px solid #333;
  border-radius: 8px;
  margin: 20px 0;
}

#three-container {
  cursor: grab;
}

#three-container:active {
  cursor: grabbing;
}

.controls {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.controls p {
  margin: 5px 0;
  color: #495057;
}

.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 h4 {
  color: #007bff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

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

#molecule-info p {
  margin: 10px 0;
  color: #495057;
}

#molecule-info span {
  font-weight: bold;
  color: #007bff;
}

#orbital-legend {
  margin-top: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 10px;
  font-size: 0.9rem;
}

.orbital-symbol {
  width: 30px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 4px;
  color: white;
  font-style: italic;
}

.orbital-symbol.sigma {
  background: #00aa00;
}

.orbital-symbol.pi {
  background: #aa00aa;
}

.orbital-color {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

.orbital-color.phase-pos {
  background: linear-gradient(135deg, #ff4444, #ff8888);
}

.orbital-color.phase-neg {
  background: linear-gradient(135deg, #4444ff, #8888ff);
}

.orbital-color.nodal {
  background: #333;
}

#theory-details h5 {
  color: #007bff;
  margin-bottom: 10px;
}

.formula-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e50;
  font-family: 'Times New Roman', serif;
  margin: 10px 0;
  text-align: center;
}

.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 h4 {
  font-size: 1.1rem;
}

.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;
}

.btn.active {
  background-color: #28a745;
  border-color: #28a745;
}

.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: 992px) {
  .simulation-controls {
    padding: 15px;
  }

  #three-container {
    height: 400px;
  }
}