body{
    margin: 0;
    padding: 0;
    background-color: #005892e9;
    background-image: url("https://www.transparenttextures.com/patterns/clean-textile.png");
}

.box{
    background-color: #ceecf7;
    /* background-image: url("https://img.freepik.com/premium-vector/day-with-clouds-weather-app-screen-mobile-interface-design-forecast-weather-background-time-concept-vector-banner_87946-4137.jpg") ; */
    opacity: 1;
    width: 60% ;
    height: 600px;
    position: absolute;
    top: 8%;
    left: 20%;
    border-radius: 20px;
    /* border: 2px solid rgb(0, 0, 0); */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.389);
    display: flex;
    flex-direction: row;
    backdrop-filter: blur(10px); /* Adjust the blur intensity */
    background-color: rgba(255, 255, 255, 0.5); /* Optional: Add transparency */
}


.box .left{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 400px;
    height: 100%;
}

.box .left .main{
    text-align: center;
}
.box .left .main input{
    width: 75%;
    height: 15px;
    border-radius: 20px;
    border: 2px solid #aeadad;
    background-color: rgb(255, 255, 255) ;
    padding: 12px;
}
.box .left .main button{
    width: 30%;
    height: 30px;
    margin-top: 20px;
    border-radius: 20px;
    border: 2px solid #aeadad;
    background-color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}
.box .left .main button:hover { 
    /* background: #b4bdc0;  */
    transform: translateY(-5px) scale(1.05); 
    border-radius: 8px; 
}



.box .left .general{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 80%; */
    /* margin-left: 20%; */
    padding: 30px;
}     
.box .left .general h3{
        font-size: 35px;
        margin-top: 10px;
        margin-bottom: 0;
        font-family: "Tinos", serif;
}
.box .left .general h4{
        margin-top: 5px;
        margin-bottom: 0;
}
.box .left .general h5{
        margin-top: 5px;
        margin-bottom: 0;
}
.box .left .general h6{
        font-size: 20px;
        margin-top: 5px;
        margin-bottom: 0;
}
.box .left .general p{
        font-size: 50px;
        margin-top: 5px;
        margin-bottom: 0;
        font-family: "Libre Caslon Display", serif;
        font-weight: 200;
        color: black;        
}

.box .left .general p img{
            /* image added dynamically */
            width: 60px;
            height: 60px;
            position: relative;
            top: 20%;
            left: 5%;
            opacity: 1;
}
    

.box .right{
    display: flex;
    flex-direction: column ;
    justify-content: space-evenly;
    padding: 20px;
    width: 60%;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Hourly forecast */

.box .right .hourly{
    display: flex;
    flex-direction: column;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 12px;
}
.box .right .hourly div p{
    font-size: 18px ;
    font-weight: bold;
}
.box .right .hourly .hour{
    display: flex;
    flex-direction: row;

    overflow: auto;
    overflow-x: scroll;
    /* overflow: hidden; */
    scrollbar-width: 2px;

    height: 200px;
    border: 1px solid #aeadad;
    padding: 10px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0
}
#hour::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
    border-radius: 20px;
    height: 200px;
}
#hour::-webkit-scrollbar{
    height: 4px;
	background-color: #F5F5F5;
    border-radius: 30px;
}
#hour::-webkit-scrollbar-thumb{
	background-color: #a5a5a5;
	border: 1px solid #9b9b9b;
}

.box .right .hourly .hour div{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 20px;
}
.box .right .hourly .hour div p{
    font-size: 15px;
    text-align: center;
}
.box .right .hourly .hour div img{
    width: 40px;
    height: 40px;
}

/* 10 days forecast */

.box .right .daywise{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.box .right .daywise div p{
    font-size: 18px ;
    font-weight: bold;

}
.box .right .daywise .day{
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    /* overflow: hidden; */
    scrollbar-width: 2px;
    scroll-behavior: smooth;
    scrollbar-color: white;
    height: 200px;
    border: 1px solid #aeadad;
    padding: 10px;
    background-color: white;
    /* border-radius:top-left top-right bottom-right bottom-left */
    border-radius: 12px 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0
}
#day::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
    border-radius: 20px;
    height: 200px;
}
#day::-webkit-scrollbar{
    width: 4px;
	background-color: #F5F5F5;
    border-radius: 30px;
}
#day::-webkit-scrollbar-thumb{
	background-color: #a5a5a5;
	border: 1px solid #9b9b9b;
}

.box .right .daywise .day div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white ;
    padding: 10px;
    padding-bottom: 0;
}
.box .right .daywise .day div p{
    font-size: 15px;
    text-align: center;
}
.box .right .daywise .day div img{
    width: 40px;
    height: 40px;
}

footer{
    position: fixed;
    top: 95%;
    left: 46%;
}