body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-image: url("Background.jpg");
  background-position: center;
  /*background-repeat: repeat;*/
  background-size: cover;
}
h1{
  color: #ff1170;
}
.container {
  max-width: 600px;
  margin: auto;
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(209,236,241,0.5));
  border-radius: 10px;
  border: 2px solid #17a2b8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}

.container:hover {
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.title {
  text-align: center;
  margin-bottom: 20px;
}

.Temperature-icon {
  font-size: 40px;
}

.dropdown-container {
  margin-bottom: 15px;
}

select, input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #f0f8ff;
  border: 1px solid #17a2b8;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 10px;
}

select:focus, input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  transition: all 0.3s ease;
}

button[type="reset"] {
  background-color: #6c757d;
}

button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

#result {
  margin-top: 20px;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  background-color: #e9ecef;
  border-radius: 5px;
}

#cityComparisonContainer {
  margin-top: 25px;
  padding: 15px;
  background-color: #f0f9ff;
  border-radius: 8px;
  border: 1px solid #17a2b8;
}

#compareResult {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}
