/* Göstergelerin (canvas) duyarlı (responsive) olmasını sağlar */
canvas {
  width: 100% !important;
  height: auto !important;
}

/* Koyu tema için Navbar renklerini ayarla */
[data-bs-theme="dark"] .navbar {
  background-color: #212529 !important;
}

/* YENİ EKLENEN STİL: Grafik canvas'ının bulunduğu alana bir minimum yükseklik verelim */
#chart-page .card-body {
  min-height: 400px;
  position: relative;
}
#live-chart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
