/* === Historical Development (NPL/CAR) – UI shell === */

/* Card container */
.hist-dev-chart-wrapper {
  background: #ececed;                /* light grey, όπως στο screenshot */
  padding: 40px;            /* extra bottom για legend/footnote */
  position: relative;
  margin: 65px;
}

/* Title (αριστερά, έντονο) */
.hist-dev-title {
  font-family: 'Source Serif 4';
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #222;
}

/* Subtitle (centered πάνω από το canvas) */
.hist-dev-subtitle {
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#title-subtitle-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

/* Canvas: full width – fixed height */
#hist-dev-canvas,
.hist-dev-chart-wrapper canvas {
  width: 100% !important;
  height: 360px !important;
  display: block;
}

/* Footnote (κάτω αριστερά, italic, μικρό) */
.hist-dev-footnote {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #6b7280;
  margin-top: 10px;
}

/* Optional: responsive tweaks */
@media (max-width: 640px) {
  .hist-dev-chart-wrapper {
    padding: 20px;
    margin: 30px;
  }

  #hist-dev-canvas,
  .hist-dev-chart-wrapper canvas {
    height: 300px !important;
  }

  #title-subtitle-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hist-dev-subtitle {
    transform: initial;
    position: initial;
  }
}



/* Optional: dark mode */
/* @media (prefers-color-scheme: dark) {
  .hist-dev-chart-wrapper {
    background: #111827;
    border-color: #1f2937;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  .hist-dev-title { color: #e5e7eb; }
  .hist-dev-subtitle { color: #e5e7eb; }
  .hist-dev-footnote { color: #9ca3af; }
} */
