body {
  background: #f5f7fb;
}

.monsoon-outlook-page {
  max-width: 1400px;
  margin: auto;
  padding: 30px 20px 60px;
  padding-bottom: 200px;
  /* height: 600px; */
}

/* HERO */
.monsoon-hero {
  text-align: center;
  margin-bottom: 50px;
}
.monsoon-hero h1 {
  font-size: 3rem;
  color: #0f1f44;
}
.monsoon-hero p {
  color: #555;
}

/* DASHBOARD CARDS */
.weather-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.weather-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  cursor: pointer;
  border-left: 6px solid #ccc;
  transition: 0.3s;
}

.weather-card.primary { border-color: #9aaeff; }
.weather-card.highlight { border-color: #2b5cff; }

.weather-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* SECTION HEADER */
.section-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
  /* background-color: lightblue; */
}

.section-header h2 {
  font-size: 1.8rem;
  text-align: center;
  width: 100%;
  /* background-color: yellow; */
}

/* RADIO */
.radio-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

/* MAP */
.image-preview,
.monsoon-image {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}

.image-preview img,
.monsoon-image img {
  max-width: 100%;
  max-height: 520px;
}

/* ZONE GRID */
.monsoon-card-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.monsoon-card {
  background: #fff;
  width: 200px;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.monsoon-card img {
  width: 160px;
  height: 120px;
}

.back-btn {
  background: #1f3b8b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.hidden {
  display: none;
}
