body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.weather-app {
    background: linear-gradient(135deg, #0f8dda 0%, #008998 100%);
    width: 45%;
    min-width: 300px;
    height: 70%;
    overflow: scroll;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: white;
    scrollbar-width: none;
    margin: 8px;
}

.search{
    display: flex;
    justify-content: space-between;
}

.details{
    display: flex;
    justify-content: space-around;
}

.details img{
    width: 30px;
    height: 30px;
}

.humidity{
    display: flex;
    align-items: center;
}

.wind{
    display: flex;
    align-items: center;
}

.cloud{
    width: 100px;
    height: auto;
}

.details p{
    margin: 4px 0px;
}

.margin{
    margin-left: 8px;
}

.city h2,h3{
    margin: 8px;
}

.search input{
    width: 80%;
    border-radius: 50px;
    background-color: white;
    border: none;
    padding: 0px 16px;
    margin-right: 16px;
}

.search button{
    border: none;
    cursor: pointer;
    background-color: white;
    border-radius: 50px;
}

.search > button > img{
    width: 16px;
    padding: 8px;
}

#error{
    width: 80%;
    color: black;
    border-radius: 50px;
    border: none;
    padding: 16px 15px;
    margin: 20px;
}

#weather-container,#user-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

#save-data{
    justify-content: center;
    margin: 20px;
    padding: 8px;
    background-color: aqua;
    color: black;
    border-radius: 15px;
    border: none;
}

#get-data{
    justify-content: center;
    margin: 20px;
    padding: 8px;
    background-color: aqua;
    color: black;
    border-radius: 15px;
    border: none;
}

#delete-data,#unique-date{
    justify-content: center;
    margin: 20px;
    padding: 8px;
    background-color: aqua;
    color: black;
    border-radius: 15px;
    border: none;
}