* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #74ebd5, #9face6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
    width: 350px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    text-align: center;
}

h1 {
    margin-bottom: 15px;
}

.search {
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: #ff7e5f;
    color: white;
}

.weather {
    margin-top: 20px;
    display: none;
}

.weather img {
    width: 100px;
}

.details {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
