/* search-result.css */

/* Umumiy blok */
.search-weather-block {
  max-width: 420px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* Sana */
.search-weather-block .today-date {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

/* Sarlavha */
.search-weather-block h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* Ikonka */
.search-weather-block .weather-icon {
  width: 80px;
  height: 80px;
  margin: 10px auto;
}

/* Asosiy harorat */
.search-weather-block .main-temp {
  font-size: 38px;
  font-weight: bold;
  color: #ff5a1e;
  margin: 10px 0;
}

/* Kunduz/kecha haroratlari */
.search-weather-block .today-temp {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

.search-weather-block .today-temp b {
  font-weight: bold;
}

/* Tavsif */
.search-weather-block .weather-desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

/* Qo‘shimcha info */
.search-weather-block .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 14px;
  color: #444;
  margin-top: 10px;
  text-align: left;
}
.search-weather-block .info-grid div {
  background: #f8fbfc;
  padding: 8px 10px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 480px) {
  .search-weather-block {
    padding: 16px;
  }

  .search-weather-block .main-temp {
    font-size: 32px;
  }

  .search-weather-block .info-grid {
    grid-template-columns: 1fr;
  }
}
