*{
    padding:0;
    margin: 0;
    color:white;
    font-family: sans-serif;
}

body{
    background: #001;
    display: flex;
}

.profile{
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile h2{
    margin-left: 20px;
    font-size: 20px;
    
}

.img-box
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    flex-shrink: 0;
}

.img-box img{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.menu{
    background-color: #123;
    width: 60px;
    height: 100vh;
    padding: 20px;
    text-transform: capitalize;
    overflow: hidden;
    transition: 0.5s;
}

.menu:hover{
    width: 260px;
}

ul{
    list-style: none;
    position: relative;
    height: 95%;
}

ul li a{
    text-decoration: none;
    display: block;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: 0.5s;
}

ul li a:hover, .Active, .data-info .box:hover, td:hover{
    background-color: #ffffff55;
}

.log-out{
    position: absolute;
    bottom: 0;
    width: 100%;
    /* background: red;
    border-radius: 10px; */
}

.log-out a{
    background-color: #a00;
}

ul li a i{
    
    font-size: 30px;
}

.content{

    width: 100%;
    padding: 20px;    
}

.title-info{
    background: #0481ff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin: 10px 0;
}

.data-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.data-info .box{
    background: #123;
    height: 150px;
    flex-basis: 150px;
    flex-grow: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.data-info .box i{
    font-size: 40px;

}

.data-info .box .data{
    text-align: center;    
}

.data-info .box .data span{
    font-size: 30px;
}

table{
    width: 100%;
    text-align: center;
    border-spacing: 8px;
}

th, td{
    background: #123;
    height: 40px;
    border-radius: 8px;
}

th{
    background-color: #0080ff;
}

.price , .count{
    padding: 6px;
    border-radius: 6px;
}

.price{
    background: green;
}

.count{
    background: gold;
    color: black;
}