*{
    padding: 0;
    margin: 0;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
}
body{
    background-color: #001;
    display: flex;
}
.Img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    flex-shrink: 0;
}
.Img img{
    width: 100%;
}
.profile{
    display: flex;
    align-items: center;
    gap: 30px;
}
.profile h2{
    font-size: 20px;
    text-transform: capitalize;
}
.menu{
    background-color: #123;
    width: 65px;
    height: 94.8vh;
    padding: 20px;
    overflow: hidden;
    transition: .5s;
}
ul{
    position: relative;
    height: 95%;
    list-style: none;
}
ul li a{
    display: block;
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    text-decoration: none;
    gap: 50px;
    border-radius: 8px;
    transition: .5s;
}
ul li a:hover, .active,  .data-info .box:hover, td:hover{
    background-color: #ffffff55;
}
.logout{
    position: absolute;
    width: 100%;
    bottom: 0;
}
.logout a{
    background-color: red;
}
ul li a i{
    font-size: 25px;
}
.menu:hover{
    width: 300px;
    /* transition: .5s; */
}
.content{
    width: 100%;
    margin: 10px;
}
.title_info{
    background-color: cadetblue;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 20px;
}
.data-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.data-info .box{
    flex-basis: 150px;
    background-color: #123;
    height: 150px;
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
}
.data-info .box .data{
    text-align: center;
}
.data-info .box .data span{
    font-size: 40px;
}
.data-info .box i{
    font-size: 25px;
}
table{
    width: 100%;
    text-align: center;
    border-spacing: 8px;
}
td, th{
    background-color: #123;
    height: 40px;
    border-radius: 8px;
}
th{
    background-color: cadetblue;
}
.price, .count{
    padding: 5px;
    border-radius: 8px;
}
.price{
    background-color:green ;
}
.count{
    background-color: yellow;
    color: black;
}