/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.weather-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

#weatherIcon {
    width: 80px;
    height: 80px;
    margin: 10px 0;
}

p {
    font-size: 18px;
    margin: 5px 0;
}
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    position: absolute;
    width: calc(100% - 20px);
    z-index: 10;
}

.suggestions-list li {
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
}

.suggestions-list li:hover {
    background-color: #2a5298;
}
