.weather-widget {
  width: 260px;
  background: rgb(57, 56, 56);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.widget-header {
  background: rgb(34, 34, 34);
  color: #ffffff;
  padding: 10px 20px;
  text-align: center;
}

.widget-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.weather-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.weather-icon img {
  width: 70px;
  height: 70px;
}

.weather-details h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.weather-details p {
  margin: 5px 0;
  color: #ffffff;
  font-size: 0.9em;
}

.widget-footer {
  background: #f1f1f1;
  text-align: center;
  padding: 10px;
  font-size: 0.8em;
  color: #777;
}

.widget-footer a {
  text-decoration: none;
  color: #007bff;
}
