body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-center h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}

.date-selector {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.date-selector .date-arrow {
  font-size: 24px;
  cursor: pointer;
  margin: 0 10px;
}

.date-selector .date {
  font-size: 18px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #f1f1f1;
  padding: 8px 12px;
  border-radius: 20px;
}

.search-bar input {
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  padding: 5px;
}

.search-bar img {
  height: 16px;
  margin-left: 8px;
}

main {
  display: flex;
  padding: 20px;
}

.map-container {
  position: relative;
  flex: 2;
  margin-right: 20px;
}

#map {
  width: 100%;
  height: 500px;
  background-color: #e5e5e5;
  border-radius: 12px;
}

.location-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.actions-container {
  flex: 1;
  background-color: #fff;
  padding: 20;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.actions-container h2 {
  margin-top: 0;
}

.action-card {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #f4f4f4;
}

.action-card h3 {
  margin-top: 0;
}

.immediate {
  background-color: #d1e7dd;
}

.high-risk {
  background-color: #f8d7da;
}

.long-term {
  background-color: #fff3cd;
}

.short-term {
  background-color: #cfe2ff;
}

.graphs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.graph-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.graph-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
  color: #333;
}

canvas {
  max-width: 100%;
  height: 200px;
}

.legend {
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.info {
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}
