body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(180deg, #003300, #002200);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .container {
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 20px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }
    h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    h2 span {
      margin: 0 5px;
    }
    .search-box {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #222;
      border-radius: 25px;
      padding: 5px 10px;
      margin-bottom: 20px;
    }
    .search-box input {
      flex: 1;
      padding: 10px;
      border-radius: 20px;
      border: none;
      outline: none;
      font-size: 16px;
      background: transparent;
      color: white;
    }
    .search-box button {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      padding: 8px;
    }
    .weather-icon {
      font-size: 50px;
      margin: 10px 0;
    }
    .temperature {
      font-size: 40px;
      font-weight: bold;
    }
    .city-name {
      font-size: 22px;
      margin: 10px 0;
    }
    .details {
      display: flex;
      justify-content: space-around;
      margin: 15px 0;
      font-size: 16px;
    }
    .crops {
      text-align: left;
      margin-top: 20px;
    }
    .crops h3 {
      margin-bottom: 10px;
      font-size: 18px;
      text-align: center;
    }
    .crops ul {
      list-style: decimal;
      padding-left: 20px;
    }
    .crops li {
      margin: 4px 0;
    }