body {
    background: #f9f7fe;
    font-family: "Roboto", sans-serif;
    margin: 0;
  }
  
  .weather-app {
    background: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  }
  
  header {
    margin-bottom: 30px;
  }
  
  .search-form-input {
    width: 75%;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    background: #f9f7fe;
    font-size: 16px;
  }
  
  .search-form-button {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #885df1;
    color: white;
    font-size: 16px;
    border: none;
    margin-left: 8px;
    cursor: pointer;
  }
  
  .weather-app-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .weather-app-city {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
  }
  
  .weather-app-details {
    color: #8b7c91;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .weather-app-details strong {
    color: #f65282;
  }
  
  .weather-app-temperature-container {
    display: flex;
    align-items: center;
  }
  
  .weather-app-temperature {
    font-size: 80px;
    font-weight: 700;
  }
  
  .weather-app-unit {
    font-size: 28px;
    margin-left: 5px;
  }
  
  .weather-app-icon {
    width: 80px;
    margin-right: 10px;
  }
  
  .weather-forecast {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  
  .weather-forecast-day {
    text-align: center;
  }
  
  .weather-forecast-date {
    color: #8b7c91;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .weather-forecast-icon {
    width: 50px;
    height: 50px;
  }
  
  .weather-forecast-temperatures {
    margin-top: 5px;
    color: #f65282;
  }
  
  .weather-forecast-temperatures .forecast-low {
    color: #8b7c91;
    margin-left: 4px;
  }
  
  footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #8b7c91;
  }
  