/* Forecast Styling */
.forecast-container {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef3fe 100%);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  margin: 20px 0;
  border: 1px solid rgba(64, 141, 251, 0.2);
}

.forecast-title {
  color: #1a2542;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(64, 141, 251, 0.2);
  padding-bottom: 12px;
}

.forecast-chart {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.key-points-section {
  margin-top: 24px;
  background: white;
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid #408dfb;
}

.key-points-title {
  color: #1a2542;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.key-points-list {
  list-style-type: none;
  padding: 0;
}

.key-points-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.key-points-list li:before {
  content: "•";
  color: #408dfb;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -4px;
}

.key-point-label {
  font-weight: 600;
  color: #21263C;
  margin-right: 8px;
}

.price-value {
  font-family: 'Monaco', 'Consolas', monospace;
  font-weight: 500;
  background: rgba(235, 244, 254, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
  color: #1a2542;
}

.change-positive {
  color: #38b36e;
}

.change-negative {
  color: #e74c3c;
}

.forecast-dates-section {
  margin-top: 24px;
  background: #f8f9ff;
  border-radius: 8px;
  padding: 16px;
}

.forecast-dates-title {
  color: #1a2542;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.forecast-dates-list {
  list-style-type: none;
  padding: 0;
}

.forecast-dates-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(64, 141, 251, 0.1);
}

.forecast-dates-list li:last-child {
  border-bottom: none;
}

.date-column {
  min-width: 110px;
}

.value-column {
  font-family: 'Monaco', 'Consolas', monospace;
  color: #21263C;
}

.range-column {
  color: #6c757d;
  font-size: 0.9em;
}

.disclaimer-section {
  margin-top: 24px;
  padding: 12px;
  background: rgba(235, 244, 254, 0.5);
  border-radius: 8px;
  border-left: 4px solid #6CAEFB;
  font-size: 0.85em;
  color: #6c757d;
}