

/* Main Layout */
.forecast-container {
  display: flex;
  height: 100vh;
}

/* Sidebar - More professional theme */
/* Sidebar - Professional Grey Theme */
/* Sidebar - Royal Blue Theme */
.district-list {
  width: 260px;
  background: #1d2d50; /* royal navy */
  color: #f0f4ff;
  padding: 20px;
  overflow-y: auto;
  border-right: 1px solid #111b33;
}
.district-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.district-list h2 {
  margin: 0 0 15px;
  font-size: 22px;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid #23375f;
}

.district-list li {
  padding: 10px 14px;
  margin-bottom: 6px;
  background: #133b5c; 
  border-radius: 6px;
  cursor: pointer;
  transition: 0.25s;
  color: #eaf2ff;
}

.district-list li:hover {
  background: #1e5f96;
  color: white;
}



/* Weather Panel */
.weather-display {
  flex: 1;
  padding: 30px;
}

/* Default Placeholder */
.placeholder-box {
  margin-top: 140px;
  text-align: center;
  color: #666;
}

.placeholder-icon {
  font-size: 70px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.weather-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

/* Weather Cards Grid */
.weather-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  
}

.weather-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  text-align: center;
  transition: 0.25s ease;
}

.weather-card:hover {
  transform: translateY(-4px);
}

.weather-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.weather-label {
  font-size: 18px;
  font-weight: 600;
  color: #555;
}

.weather-value {
  font-size: 24px;
  font-weight: bold;
  color: #1b5e20;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .forecast-container {
    flex-direction: column;
  }
  
  .district-list {
    width: 100%;
    height: 180px;
    display: block;
  }
}


.forecast-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

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

.forecast-table th {
  background: #1d2d50;
  color: #fff;
}

.warning-row {
  background: #ffe2e2;
  color: #8a0000;
  font-weight: 600;
}
