*{
    margin: 0;
    padding: 0;
}
body{
    background-image : url(./img/bg.png);
    background-attachment: fixed;
    background-position: center;
    font-family: "Mukta", sans-serif;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    position: relative;
    height: 100vh;
}
.container_1{
    background-color: rgba(255, 255, 255, 0.5);
    padding :10px;
    width :100%;
    text-align: center;
    box-shadow: 1px 1px 5px #3A5C7D;
    border-radius: 10px;
    margin-top: 20px;
}
.container_1_1{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
.container_2{
    background-color: rgba(255, 255, 255, 0.5);
    width :45%;
    box-shadow: 1px 1px 5px #3A5C7D;
    border-radius: 10px;
    height: 90vh;
    overflow-Y: none;
    overflow-x: scroll;
    padding: 10px;
    scrollbar-width: none;
    margin-top: 20px;
}
.text1{
    font-size: 25px;
    font-weight: bold;
}
.text2{
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
}
table{
    border: 1px solid;
    border-collapse: collapse;
    width: 100%;
}
.head1,.head2{
    height: 40px;
}
.head1{
    border-right:1px solid black;
    width :50%;
}
input{
    width: 150px;
    background-color: aliceblue;
    border: none;
    outline: .25px solid rgba(0, 136, 255, .5);
    padding: 10px;
    text-align: center;
    margin: 10px;
    border-radius: 8px;
}
input:focus{
    background-color: rgb(222, 239, 255);
}
button{
    width: 95px;
    height: 35px;
    border-radius: 8px;
    outline: none;
    border: .25px solid rgb(0, 136, 255);
    margin-top: 15px;
}
.tbody tr{
    text-align: center;
}
.pinput{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.596);
    max-width: fit-content;
}
.tbody td{
    border: 1px solid black;
}
.leftdiv{
    display: flex;
    flex-direction: column;
    align-items: center;
    width :45%;
}
.lclimg{
    width: 200px;
    height: 45px;
    filter: contrast(500%);
}
.uclimg{
    height: 50px;
    width: 200px;
    filter: contrast(500%);

}
.pimg{
    height: 50px;
    width: 200px;
    
}
.container_1_2{
    display: flex;
    justify-content: center;
    gap : 50px;

}
.container_1_2 div{
    display: flex;
    align-items: center;
}
.container_1_1 button{
    margin-bottom: 20px;
}
span{
    font-size: 20px;
}
.container_1_2 div p{
    font-size: 25px;
    margin-left: 10px;
}
.tempflex{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.pval{
    font-size: 25px;
    margin-left: 10px;
}
label{
    margin-right: 30px;
}
.graph{
    margin-top: 10px;
}
.loading{
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: white;
    opacity: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}
.loading.active{
    z-index: 4;
    visibility: visible;
}
.loading div{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.loading p{
    font-size: 20px;
}
.loadingimg{
    animation: rotate 1s linear infinite;
}
.container_1_1 > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
    
}
.graph{
    position: relative;
    text-align: center;
}
.g{
    flex-direction: column;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}
.g button{
    position: absolute;
    top: 10px;
    right: 10%
}
.graphpage{
    z-index: -2;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(240, 248, 255);
    transition: ease .2s all;
}
.close{
    z-index: 3;
    position : absolute;
    right: 0;
    margin-top: 30px;
    margin-right: 30px;
    width: 25px;
    height: 25px;
}
.graphpage.active{
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

@media screen and (max-width:420px){
    body{
        flex-direction: column;
        width: 100vh;
        justify-content: center;
    }
}