body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

header {
  position: relative;
  background-color: #307D7E;
  color: white;
  text-align: center;
  padding: 2em 1em;
}
header h1 {
  margin: 0;
}

/* Position the note in the bottom-right corner */
.powered-by {
  position: absolute;
  bottom: 0.05em;
  right: 1em;
  font-size: 0.85em;
  color: #ffffff; /* or another color that stands out on Green */
  opacity: 0.9;   /* optional slight transparency if you like */
}
.powered-by a {
  color: #fff;
  text-decoration: none;
}

.powered-by a:hover {
  text-decoration: underline; /* Or keep it none if you prefer */
}

.dashboard {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-button.active {
  background-color: #3C9992;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

#map {
  height: 400px;
  margin-bottom: 20px;
}

.chart-container {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  height: 400px;
}

.filters {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.filters label {
  margin-right: 5px;
}

.filters select {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.stats-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.stat-tile {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-tile h3 {
  font-size: 0.9em;
  margin-bottom: 5px;
  color: #666;
}

.stat-tile .number {
  font-size: 1.2em;
  font-weight: bold;
  color: #0066cc;

}

.swemwbs-stats .stat-tile {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.swemwbs-stats .stat-tile h3 {
  font-size: 0.9em;
  margin-bottom: 5px;
  color: #666;
}

.swemwbs-stats .stat-tile .number {
  font-size: 1.2em;
  font-weight: bold;
  color: #0066cc;
}

.swemwbs-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.swemwbs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .swemwbs-row {
    grid-template-columns: 1fr;
  }
}

.details-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-container {
width: 100%

