/* Reset Styles */
body, h1, h2, p, form, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Container Styles */
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #ffffff;
  }
  
  .container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
    color: #333;
  }
  
  /* Form Styles */
  form {
    margin-bottom: 20px;
  }
  
  input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
  }
  
  button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background: #0056b3;
  }
  
  /* Weather Display Styles */
  #weather-display {
    margin-top: 30px;
  }
  
  .hidden {
    display: none;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    input, button {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  