/* chart.forex_note.css - Styling for the Forex close-only caption.
   Shown only when the active chart market is Forex. */

.chart-forex-note {
  margin: 6px 12px 0 12px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #f0b200;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-forex-note[hidden] {
  display: none !important;
}

.chart-forex-note::before {
  content: "\24D8";
  font-size: 14px;
  line-height: 1;
  opacity: 0.9;
}

body.light-theme .chart-forex-note {
  background: rgba(255, 193, 7, 0.14);
  border-color: rgba(255, 160, 0, 0.55);
  color: #8d6a00;
}
