* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(135deg, #051937, #004d7a, #008793, #00bf72);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 40px;
  }
  
  .title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
  }
  
  h1 {
    background: linear-gradient(to right, #8fb9c2, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1.5px;
  }
  
  .Temperature-icon {
    font-size: 36px;
    background: linear-gradient(to right, #97746e, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .input-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1000px;
  }
  
  .input-group {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  input {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: none;
    outline: none;
    width: 200px;
    text-align: center;
  }
  
  input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .icon {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0 16px;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .button {
    margin-top: 20px;
  }
  
  .button button {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
    transition: 0.3s ease-in-out;
  }
  
  .button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.6);
  }
  