* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #68a5e2, #67e1c8);
    color: #2d3436;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
}

h1 {
    margin-bottom: 1.5rem;
    color: #2d3436;
}

input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.8rem;
    background-color: #00b894;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #00a085;
}

#weatherResult {
    margin-top: 1.5rem;
}

.hidden {
    display: none;
}