body {
    background-color: hsla(0,0%,87.8%,.10196078431372549);
    padding: 0px;
    margin: 0px;
   }

.app-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    max-width: 75%;
    margin: auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff
}

.searchinput{
    margin:30px 0px 0px 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    
}
.sinput{
    height: 20px;
    width: 100%;
    /* padding: 11px 50px 11px 55px; */
    padding: 11px 26px 11px 35px;
    border-radius: 20px;
    margin-right: 5px;
    background-color: #fff;
    border-color: black;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
}
.searchbutton{
    padding: 11px 20px 11px 20px;
    border-radius: 25px;
    background-color: #fff;
    border-color: black;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
    cursor: pointer;

}
.weekforecast{
    width: 100%;
    margin: 1rem 0
}
/* .alldays{
    margin: 10px 30px 10px 30px;
    list-style: none;
    display: flex;
    flex-direction: row;
    JUSTIFY-CONTENT: space-between;
    padding: 0px

} */
.alldays{
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    margin-left: 0;
    flex-wrap:wrap;
}


.day{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
    margin: 20px 10px;
    padding: 40px 80px;
    border-radius: 10px;
}
.weatherIcon{
    width:4rem;
    height:4rem;
}
.icon{
    width:100%;
    height:100%;
}

.description{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
    flex-wrap:wrap;
}

.description1{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
    flex-wrap:wrap;
}
.itemdescrption{
    width: 45%;
    border-radius: 0.3rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 10px 10px 10px 10px;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
    flex: 1;
}
.weatherattribute{
    font-weight: 700;
}
.descriptionmain{
    margin-left:-10px;
}

.citydesc{
    width: 100%;
    border-radius: 0.3rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 11px 50px 11px 55px;
    text-align: center;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
}

input.placeholder {
    text-align: center;
}

.temp{
    font-size: 2rem;
    font-weight: 700;
}

li:hover{
    color: rgb(0, 47, 255);
}
li:first-child{
    color: rgb(0, 47, 255);
}
.Weathergraph{
    margin-top:10px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
}

.searchresults{
    width:80%;
    padding:5px 40px 5px 25px;
    margin:5px 1px;
    background-color: #fff;
    box-shadow: 4px 4px 9px #ccc, -4px -4px 9px #fff;
    border-radius: 30px;

    position: absolute;
}
.search{
    position:relative;
    width:100%;
}
.searchresults1{
    font-weight: 700;
    margin:30px 5px;
    cursor:pointer;
}

.searchresults1:hover{
    color: rgb(0, 47, 255);
}


.searchdisable{
    display:none;
}

