.page-title {
  color: #00b4d8;
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: 600;
}

.time-range-selector {
  display: flex;
  align-items: center;
  color: #e6f1ff;
  margin-top: 10px;
}

.time-range-selector label {
  font-size: 0.9rem;
  color: #8892b0;
}

.time-range-selector .form-select {
  background-color: #112240;
  border-color: #18364f;
  color: #e6f1ff;
  font-size: 0.9rem;
}

.btn-outline-info {
  color: #00b4d8;
  border-color: #00b4d8;
}

.btn-outline-info:hover {
  background-color: #00b4d8;
  color: #0a192f;
}

/* Chart container */
.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* Chart Legend */
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #8892b0;
}

.legend-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  margin-right: 6px;
}

/* Chart Controls */
.chart-controls .btn {
  font-size: 0.75rem;
  padding: 2px 8px;
}

.chart-controls .btn.active {
  background-color: #00b4d8;
  color: #0a192f;
  border-color: #00b4d8;
}

/* Stats Cards */
.stat-card {
  background-color: #0c1c33;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-title {
  color: #8892b0;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e6f1ff;
  margin-bottom: 5px;
}

.stat-trend {
  font-size: 0.8rem;
  color: #8892b0;
}

.stat-trend.positive {
  color: #06d6a0;
}

.stat-trend.negative {
  color: #ef476f;
}

.stat-trend i {
  margin-right: 3px;
}

/* Inclination Stats Boxes */
.chart-stats {
  margin-top: 15px;
}

.stat-box {
  background-color: #0c1c33;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 10px;
  text-align: center;
}

.stat-box .stat-title {
  font-size: 0.75rem;
  margin-bottom: 3px;
}

.stat-box .stat-value {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .page-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .time-range-selector {
    justify-content: center;
    margin-bottom: 15px;
  }

  .chart-container {
    height: 250px;
  }

  .stat-card .stat-value {
    font-size: 1.3rem;
  }

  .stat-box .stat-value {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .chart-container {
    height: 220px;
  }

  .chart-legend {
    gap: 10px;
  }

  .legend-item {
    font-size: 0.75rem;
  }
}
