/* === Base Wrapper === */
.aburegions-page {
  text-align: center;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

/* === Title === */
.aburegions-page h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #c20000; /* ABU red */
  border-left: 6px solid #c20000;
  padding-left: 14px;
  text-align: left;
}

/* === amCharts Map === */
#chartdiv {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto 40px auto;
  border: 3px solid #c20000;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

#continent-label {
  position: fixed;
  background: #c20000;
  color: #fff;
  padding: 8px 14px;
  font-weight: bold;
  font-size: 15px;
  font-family: 'Arial', sans-serif;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
}
#continent-label.show {
  opacity: 1;
}


/* === Continent Buttons === */
.continent-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.continent-btn {
  display: inline-flex;
  align-items: center;
  background-color: #c20000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.continent-btn i {
  margin-right: 8px;
}

.continent-btn:hover {
  background-color: #a00000;
  color: #fff;
  text-decoration: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  #chartdiv {
	height: 400px;
  }
}

@media (max-width: 600px) {
  .aburegions-page h1 {
	font-size: 24px;
	text-align: center;
  }

  .continent-btn {
	font-size: 14px;
	padding: 8px 14px;
  }

  #chartdiv {
	height: 320px;
  }
}
