body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle, #1e1e30, #12121e);
    color: #fff;
  }
  
  .weather-app {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .weather-card {
    background: #2a2a40;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  
  .title {
    font-size: 2rem;
    color: #f5f5f5;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  .search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .search-input {
    width: 70%;
    padding: 10px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
    font-size: 1rem;
    color: #fff;
    background: #3b3b50;
  }
  
  .search-input::placeholder {
    color: #bbb;
  }
  
  .search-button {
    padding: 10px 20px;
    border: none;
    border-radius: 0 25px 25px 0;
    background: #5757ff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .search-button:hover {
    background: #6c6cff;
  }
  
  .weather-info {
    margin-top: 20px;
    text-align: left;
  }
  
  .weather-info p {
    font-size: 1rem;
    margin: 10px 0;
    color: #f0f0f0;
  }
  
  .weather-info span {
    font-weight: bold;
    color: #ffd700;
  }
  