/* ROI-Prognose Section - Clean Version */
.roi-prognose-content-wrapper {
  display: flex;
  justify-content: center;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.roi-prognose-forecast-section {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
}
.roi-prognose-forecast-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.1);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* Enhanced ROI Grid Layout */
.roi-prognose-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: stretch;
}
/* ROI Calculation Card */
.roi-prognose-roi-calculation {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(34, 197, 94, 0.1)
  );
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.roi-prognose-roi-calculation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399);
}
.roi-prognose-roi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.roi-prognose-roi-icon {
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  color: white;
}
.roi-prognose-roi-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 20px;
}
/* ROI Metrics */
.roi-prognose-roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 20px;
}
/* Enhanced Formula Section */
.roi-prognose-roi-formula-section {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(99, 102, 241, 0.15)
  );
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}
.roi-prognose-roi-formula-section::before {
  content: "📊";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(59, 130, 246, 0.9);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
}
.roi-prognose-roi-formula-display {
  font-size: 1.3em;
  color: #1e40af;
  font-family: "Courier New", monospace;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
/* Break-even result section */
.roi-prognose-roi-break-even-result {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(34, 197, 94, 0.15)
  );
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-top: auto;
}
.roi-prognose-roi-item {
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.roi-prognose-roi-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-prognose-roi-label {
  font-size: 0.9em;
  color: #374151;
  font-weight: 500;
}
.roi-prognose-roi-value {
  font-size: 1.1em;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}
.roi-prognose-roi-break-even {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-top: 8px;
}
.roi-prognose-roi-formula {
  font-size: 0.85em;
  color: #1e40af;
  font-family: "Courier New", monospace;
  margin-bottom: 4px;
}
.roi-prognose-roi-result {
  font-size: 1em;
  font-weight: 700;
  color: #1e40af;
}
/* Enhanced Assumptions section */
.roi-prognose-assumptions {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.08),
    rgba(129, 140, 248, 0.08)
  );
  border-radius: 12px;
  padding: 20px;
  border: 2px solid rgba(79, 70, 229, 0.15);
  position: relative;
  overflow: hidden;
}
.roi-prognose-assumptions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #818cf8);
}
.roi-prognose-assumptions-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.roi-prognose-calculation-icon {
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  color: white;
}
.roi-prognose-calculation-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #065f46;
}
.roi-prognose-assumptions-icon {
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  border-radius: 50%;
  color: white;
}
.roi-prognose-assumptions-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #3730a3;
}
.roi-prognose-assumptions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  flex: 1;
  justify-content: space-evenly;
}
.roi-prognose-assumptions-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95em;
  color: #475569;
  line-height: 1.5;
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  min-height: 20px;
}
.assumption-bullet {
  font-size: 0.8em;
  font-weight: bold;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Risk item styling within assumptions */
.risk-item {
  background: rgba(255, 249, 237, 0.9) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  border-left: 3px solid #f59e0b !important;
}
.risk-bullet {
  font-size: 0.8em;
  font-weight: bold;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Risk Assessment section */
.roi-prognose-risk-assessment {
  background: rgba(255, 249, 237, 0.8);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid #f59e0b;
}
.roi-prognose-risk-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.roi-prognose-risk-icon {
  font-size: 1.2em;
  color: #f59e0b;
}
.roi-prognose-risk-title {
  font-weight: 600;
  color: #92400e;
  font-size: 0.95em;
}
.roi-prognose-risk-content {
  font-size: 0.85em;
  color: #78350f;
}
.roi-prognose-risk-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}
.roi-prognose-risk-factor {
  font-weight: 600;
  color: #92400e;
}
.roi-prognose-risk-impact {
  color: #78350f;
  font-style: italic;
}
.roi-prognose-risk-note {
  font-size: 0.8em;
  color: #78350f;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 6px;
  border-left: 2px solid rgba(245, 158, 11, 0.3);
  font-style: italic;
}
/* Enhanced Timeline */
.roi-prognose-forecast-timeline {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(147, 197, 253, 0.05)
  );
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 25px;
}
.roi-prognose-timeline-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 15px 0;
  display: inline-block;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.timeline-header {
  text-align: center;
  margin-bottom: 25px;
}
.timeline-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #1e40af;
  margin: 0;
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 197, 253, 0.1)
  );
  border-radius: 25px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  display: inline-block;
}
.timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.roi-prognose-forecast-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-connector {
  position: absolute;
  top: 25px;
  right: -20px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3));
  z-index: 1;
}
.roi-prognose-forecast-step:last-child .step-connector {
  display: none;
}
.roi-prognose-forecast-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
  position: relative;
  z-index: 3;
}
.roi-prognose-investment-dot {
  background: linear-gradient(135deg, #ef4444, #f87171);
}
.roi-prognose-breakeven-dot {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.roi-prognose-profit-dot {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.roi-prognose-forecast-content {
  background: white;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roi-prognose-forecast-label {
  font-size: 0.8em;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 2px;
}
.roi-prognose-forecast-value {
  font-size: 1.1em;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 2px;
}
.roi-prognose-forecast-desc {
  font-size: 0.75em;
  color: #6b7280;
  line-height: 1.2;
  font-weight: 500;
  background-color: rgba(243, 244, 246, 0.7);
  border-radius: 4px;
  padding: 3px 5px;
  margin: 0 -5px;
  border: 1px solid rgba(209, 213, 219, 0.5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Special styles for the Break-Even description to make it more readable */
.roi-prognose-forecast-step:nth-child(2) .roi-prognose-forecast-desc {
  background-color: rgba(254, 243, 199, 0.7);
  border-color: rgba(245, 158, 11, 0.3);
  color: #92400e;
  letter-spacing: 0.01em;
}

.einarbeitung-badge {
  font-size: 0.9em;
  margin-right: 2px;
  position: relative;
  top: 1px;
}
/* Enhanced Timeline */
.roi-prognose-timeline-header {
  text-align: center;
  margin-bottom: 20px;
}
.roi-prognose-timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
}
.roi-prognose-timeline-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 100px;
  right: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
  border-radius: 2px;
  z-index: 1;
}
.roi-prognose-step-connector {
  position: absolute;
  top: 25px;
  right: -15px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3));
  z-index: 1;
}
