.ncc-analytics-container {
  padding: 20px;
}

.map-section {
  width: 100%;
  /*height: 100vh;  Full viewport height */
  position: relative;
  margin-bottom: 20px;
}

#nigeriaTelecomMap {
  position: relative;
  width: 100%;
  /*height: 500px;*/
  margin: 0 auto;
  background-color: #ffffff;
}

#nigeriaTelecomMap svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

#nigeriaTelecomMap svg g {
  transform-origin: center;
  transform: scale(0.95);  /* Slight scale to ensure padding around the map */
}

.map-container {
  width: 100%;
  /*height: 500px;*/
  position: relative;
}

.charts-section {
  /*margin-top: 150px;*/
  /* display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px; */
}

.chart-container {
  flex: 1;
  min-width: 300px;
  height: 400px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  background-color: white;
}

.state {
  fill: #e0e0e0;
  stroke: #fff;
  stroke-width: 1px;
  transition: fill 0.3s;
}

.state:hover {
  fill: #b0b0b0;
  cursor: pointer;
}

.state.selected {
  fill: #4CAF50;
}

.state-label {
  font-size: 8px;
  fill: #ffffff;
  font-weight: 500;
  pointer-events: none;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.state-group:hover {
  cursor: pointer;
}

.state-group path {
  cursor: pointer;
  transition: fill 0.3s ease;
}

.state-group:hover path {
  fill: #00a86b;
}

.state-group text {
  font-size: 8px;
  fill: #ffffff;
  text-anchor: middle;
  pointer-events: none;
}

.bar {
  fill: steelblue;
  transition: fill 0.3s;
}

.bar:hover {
  fill: #2196F3;
}

.axis-label {
  font-size: 12px;
}

.chart-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}

.legend {
  font-size: 12px;
}

.ncc-tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  pointer-events: none;
  max-width: 300px;
  z-index: 1000;
  font-size: 12px;
}

.generation-selector {
  margin-bottom: 20px;
  text-align: center;
}

.generation-selector select {
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-left: 10px;
  cursor: pointer;
}

.table-section {
  margin-top: 30px;
}

.table-controls {
  margin-bottom: 15px;
}

.filter-select {
  margin-right: 10px;
  padding: 5px;
  border-radius: 4px;
}
