body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    text-align: center;
    width: 350px;
}

h1 {
    color: white;
}

.search-box {
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
}

button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

#weatherBox {
    margin-top: 20px;
    color: white;
}

.forecast {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.forecast-item {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 10px;
    width: 70px;
    color: white;
}