/* Modul 9.3 – Umsetzung & Lernen: 1:1 Session-Plan */

.mod93-shell {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mod93-section {
  padding: 1.3rem 1.5rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 32px rgba(0,0,0,0.04);
  margin-top: 0.5rem;
}

.mod93-section h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.mod93-section p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 0.8rem;
}

/* Timebox Display */

.mod93-timebox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.mod93-timebox-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 0.75rem;
}

.mod93-time {
  font-weight: 700;
  color: #111;
}

/* Grid */

.mod93-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 900px) {
  .mod93-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mod93-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mod93-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Inputs */

.mod93-input,
.mod93-select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.875rem;
}

.mod93-textarea {
  width: 100%;
  min-height: 80px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.875rem;
  resize: vertical;
}

/* Session Header */

.mod93-session-header {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.mod93-session-date {
  font-size: 0.8rem;
  color: #1e40af;
  font-weight: 500;
}

.mod93-session-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0.3rem 0;
}

/* SINE Energy Display */

.mod93-sine-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: #faf5ff;
  border: 1px solid #ddd6fe;
  border-radius: 12px;
}

.mod93-sine-value {
  font-size: 2rem;
  font-weight: 700;
}

.mod93-sine-value.positive { color: #10b981; }
.mod93-sine-value.neutral { color: #f59e0b; }
.mod93-sine-value.negative { color: #ef4444; }

.mod93-sine-label {
  font-size: 0.8rem;
  color: #5b21b6;
  font-weight: 500;
}

/* Contract Card */

.mod93-contract-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 1rem;
}

.mod93-contract-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Topic Card */

.mod93-topic-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.mod93-topic-card.expanded {
  border-color: #3b82f6;
}

.mod93-topic-card.completed {
  border-color: #10b981;
  background: #f0fdf4;
}

.mod93-topic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.mod93-topic-header:hover {
  background: #f3f4f6;
}

.mod93-topic-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #3b82f6;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.mod93-topic-card.completed .mod93-topic-num {
  background: #10b981;
}

.mod93-topic-title {
  flex: 1;
  margin-left: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.mod93-topic-status {
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 500;
}

.mod93-topic-status.pending { background: #f3f4f6; color: #6b7280; }
.mod93-topic-status.active { background: #dbeafe; color: #1e40af; }
.mod93-topic-status.done { background: #d1fae5; color: #065f46; }

.mod93-expand-icon {
  font-size: 1.2rem;
  color: #9ca3af;
  transition: transform 0.2s;
  margin-left: 0.5rem;
}

.mod93-topic-card.expanded .mod93-expand-icon {
  transform: rotate(180deg);
}

.mod93-topic-body {
  display: none;
  padding: 1rem;
}

.mod93-topic-card.expanded .mod93-topic-body {
  display: block;
}

/* GROW Steps */

.mod93-grow-step {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 12px;
  border-left: 4px solid;
}

.mod93-grow-step.goal {
  background: #ecfdf5;
  border-color: #10b981;
}

.mod93-grow-step.reality {
  background: #eff6ff;
  border-color: #3b82f6;
}

.mod93-grow-step.options {
  background: #fef3c7;
  border-color: #f59e0b;
}

.mod93-grow-step.will {
  background: #fce7f3;
  border-color: #ec4899;
}

.mod93-grow-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mod93-grow-step.goal .mod93-grow-header { color: #065f46; }
.mod93-grow-step.reality .mod93-grow-header { color: #1e40af; }
.mod93-grow-step.options .mod93-grow-header { color: #92400e; }
.mod93-grow-step.will .mod93-grow-header { color: #9d174d; }

.mod93-grow-letter {
  font-size: 1rem;
  font-weight: 700;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.mod93-grow-step.goal .mod93-grow-letter { background: #10b981; }
.mod93-grow-step.reality .mod93-grow-letter { background: #3b82f6; }
.mod93-grow-step.options .mod93-grow-letter { background: #f59e0b; }
.mod93-grow-step.will .mod93-grow-letter { background: #ec4899; }

/* Commit Cards */

.mod93-commit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
}

.mod93-commit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.mod93-commit-num {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ec4899;
  background: #fce7f3;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

/* Action Transcription */

.mod93-action-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
}

.mod93-action-system {
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Parking Lot */

.mod93-parking-card {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 10px;
  padding: 0.6rem;
  margin-bottom: 0.4rem;
}

.mod93-parking-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #854d0e;
  margin-bottom: 0.3rem;
}

/* Review Card */

.mod93-review-card {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  border: 2px solid #a78bfa;
  border-radius: 16px;
  padding: 1rem;
}

.mod93-review-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b21b6;
  margin-bottom: 0.6rem;
}

/* DoD Checklist */

.mod93-dod-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.mod93-dod-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}

.mod93-dod-list li:last-child {
  border-bottom: none;
}

.mod93-dod-list input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #111;
}

/* Progress Bar */

.mod93-progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.mod93-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s;
  background: linear-gradient(90deg, #10b981, #059669);
}

/* Session History */

.mod93-history-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.6rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.mod93-history-card:hover {
  border-color: #3b82f6;
}

.mod93-history-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111;
}

.mod93-history-topics {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* Bubble Breaker */

.mod93-bubble-card {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border: 2px solid #fde68a;
  border-radius: 16px;
  padding: 1rem;
}

.mod93-bubble-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.6rem;
}

.mod93-bubble-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.3rem 0;
}

.mod93-bubble-num {
  font-weight: 700;
  color: #92400e;
  min-width: 1.2rem;
}

/* Actions */

.mod93-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* Tables */

.mod93-table-wrap {
  margin-top: 0.6rem;
  overflow-x: auto;
}

.mod93-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.mod93-table th,
.mod93-table td {
  border: 1px solid #e5e7eb;
  padding: 0.3rem 0.4rem;
  text-align: left;
  vertical-align: top;
}

.mod93-table th {
  background: #f3f4f6;
  font-weight: 500;
  font-size: 0.75rem;
}

.mod93-table input,
.mod93-table select,
.mod93-table textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.2rem 0.4rem;
  font: inherit;
  font-size: 0.8rem;
}

/* Responsive */

@media (max-width: 640px) {
  .mod93-section {
    padding: 1rem;
  }

  .mod93-timebox {
    flex-direction: column;
  }

  .mod93-topic-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
