.card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  #weather-details {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }
  
  .clear {
    background-color: #87cefa;
  }
  
  .clouds {
    background-color: #b0c4de;
  }
  
  .drizzle {
    background-color: #cfd8dc;
  }
  
  .thunderstorm {
    background-color: #616161;
  }
  
  .snow {
    background-color: #f5f5f5;
  }
  
  .rain {
    background-color: #90caf9;
  }
  
  .weather-icon {
    font-size: 80px;
    margin-bottom: 20px;
  }
  