body {
  background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: background 0.5s;
  padding: 1rem 0;
}
.weather-dashboard-container {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(60,60,120,0.12);
  padding: 1rem 1rem 1rem 1rem;
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.dashboard-header h1 {
  margin: 0 0 0.2rem 0;
  font-size: 1.2rem;
  color: #2d3a4a;
  letter-spacing: 0.5px;
  text-align: center;
  animation: slideDown 0.8s cubic-bezier(.77,0,.18,1) 0.2s both;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.dashboard-subtitle {
  text-align: center;
  color: #4a6073;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.dashboard-footer {
  text-align: center;
  margin-top: 0.5rem;
  color: #7a8fa6;
  font-size: 0.7rem;
  opacity: 0.8;
}
input[type="text"], button {
  font-size: 0.8rem;
  padding: 0.4em 0.7em;
  border-radius: 6px;
  border: 1px solid #b0c4de;
  margin-bottom: 0.5rem;
  outline: none;
  transition: box-shadow 0.3s, border 0.3s;
}
input[type="text"]:focus {
  border: 1.5px solid #66a6ff;
  box-shadow: 0 0 0 2px #89f7fe55;
}
button {
  font-size: 0.8rem;
  background: linear-gradient(90deg, #66a6ff 0%, #89f7fe 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(102,166,255,0.08);
  transition: background 0.3s, transform 0.2s;
}
button:hover {
  background: linear-gradient(90deg, #89f7fe 0%, #66a6ff 100%);
  transform: translateY(-2px) scale(1.03);
}
/* Weather card styles */
.weather-card {
  background: #f7fbff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(102,166,255,0.08);
  padding: 0.7rem 0.5rem;
  margin-bottom: 0.5rem;
  animation: fadeIn 0.8s;
  transition: box-shadow 0.3s;
}
.weather-card:hover {
  box-shadow: 0 4px 16px rgba(102,166,255,0.16);
}
/* Two-column layout */
.two-column-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
  height: 100%;
}
.search-bar-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
}
.search-section {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  align-items: center;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(102,166,255,0.08);
  padding: 0.7rem 1.2rem;
}
.dashboard-main {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  min-height: 0;
  height: auto;
  justify-content: center;
}
.dashboard-left {
  display: none;
}
/* --- Layout for dashboard main content --- */
.dashboard-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
  height: auto;
}

#today-weather.weather-card {
  flex: 0 0 320px;
  max-width: 320px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(60,60,120,0.10);
  border-radius: 18px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.forecast-container {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 600px;
  max-width: 800px;
  height: auto;
}

.forecast-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #2d3a4a;
  margin-bottom: 0.7rem;
  margin-left: 0.2rem;
}

.forecast-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  height: auto;
  width: 100%;
}

.forecast-row .forecast {
  flex: 0 0 110px;
  min-width: 110px;
  max-width: 110px;
  background: linear-gradient(120deg, #e0ecff 0%, #b3d8ff 100%);
  color: #2d3a4a;
  border: none;
  box-shadow: 0 4px 16px rgba(60,60,120,0.10);
  margin: 0;
  padding: 1rem 0.5rem;
  text-align: center;
  border-radius: 16px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
  .dashboard-right {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 98vw;
  }
  .forecast-container {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    align-items: center;
  }
  .forecast-row {
    justify-content: center;
    gap: 1rem;
  }
  #today-weather.weather-card {
    margin-bottom: 1.5rem;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .dashboard-right {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 100vw;
  }
  .forecast-container {
    min-width: 0;
    max-width: 100vw;
    align-items: center;
  }
  .forecast-row {
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
  }
  #today-weather.weather-card {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.5rem;
  }
  .forecast-row .forecast {
    min-width: 110px;
    max-width: 140px;
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
} 