html, body{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(157, 145, 243, 0.147), rgba(157, 145, 243, 0.204));
}
#main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    gap: 50px;
}
#saving-box{
    height: 80px;
    font-weight: 400;
color: #fff;
    width: 25%;
    border-radius: 20px;
    background-color: #5b518660;
    text-align: center;
    border: none;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

#input{
    align-items: center;
    justify-content: center;
    width: 42%;
}

#input-box{
    color: #5b5186;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 38px;
    border: none;
    border-radius: 20px;
    display: flex;
    padding:5px ;
}




#input-box:focus{
    cursor: pointer;
    border: none;
    outline: none;

}
#type-selector{
    margin-top: 50px;
    gap: 20px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}


.type-btn{
    text-align: center;
    justify-content: center;
    align-items: center;
    border: none;
width: 100%;
    font-size: 18px;
    font-weight: 400;
    border-radius: 20px;
    padding: 12px;
    background-color:#4730ab96;
    color: #fff;
}

.type-btn:active{
    transition: 0.2s ease-in-out;
    background-color:#5b518660;

}



#history{
    width: 50%;
    
}

table{
    width: 100%;
    border-radius: 20px;
    background-color: #5b518660;


}
table , tr , th , td{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 8px;
/* border-color: #5b518660; */
text-align: center;
border-collapse: collapse;
border: 2px solid none;

}
