body {
  font-family: 'MADE Tommy Soft', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F0F4F8;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #D0E3FF;
  padding: 20px;
}

.header-title {
  color: #081F5C;
  font-size: 10pt;
  cursor: pointer; /* Added for interactivity */
}

.logo {
  width: 50px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.map {
  position: relative;
  width: 60%;
}

.swiss-map {
  width: 100%;
  border-radius: 10px;
  background-color: #E0E0E0;
}

.city {
  position: absolute;
  cursor: pointer;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: green; /* Default color */
  text-align: center;
  line-height: 40px;
  color: white;
  font-weight: bold;
}

.sidebar {
  background-color: #FFF9F0;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.aqi-box {
  background: #FFF9F0;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}

.aqi-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

.aqi-status.good {
  background: #49B675;
}

.aqi-description {
  color: #081F5C;
  font-family: "MADE Tommy Soft";
  font-size: 12px;
  font-weight: 500;
}

.smiley-icon {
  width: 20px; /* Adjust size as needed */
}

.overview-box {
  background-color: #FFF9F0;
  border-radius: 0 0 7px 7px;
  width: 275px;
  height: auto;
  padding: 10px;
  margin-top: 20px;
}

.aqi-header {
  background: #1FE971;
  padding: 5px;
  text-align: center;
}

.gray-box, .white-box {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.gray-box {
  background: #EDF1F6;
  border-radius: 1px 1px 0 0;
}

.white-box {
  background: #FFF;
  border-radius: 0 0 1px 1px;
}

.pollutants {
  margin-top: 10px;
}

.pollutants h4, .pollutants div {
  display: flex;
  justify-content: space-between;
}

.pm-notification {
  background: #D9D9D9;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
}

#pmCalc {
  color: red;
}

.forecast-title {
  color: #081F5C;
  text-align: center;
  font-size: 14pt;
}

.forecast-header {
  color: #081F5C;
  text-align: right;
  font-size: 10pt;
  margin-bottom: 5px;
}

#forecastTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFF9F0;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

table th {
  background-color: #007bff;
  color: white;
}
