*{
    color:white;
    margin:0px;
    padding:0px;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

body{
    background-color: #001;
    background-attachment: fixed;
    display: flex;
}

.profile{
    display: flex;
    align-items: center;
    gap:30px;  
}

.img-box{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    flex-shrink: 0;
}

.img-box img{
    width: 100%
}

.menu{
    width: 60px;
    background-color: #123;
    height: 100vh;
    margin: 10px;
    padding: 10px;
    overflow: hidden;
    transition: 1s;

}

ul li a{
    display: block;
    text-decoration: none;
    margin: 10px 0px;
    display: flex;
    gap: 40px;
    padding: 8px;
    align-items: center;
    border-radius: 8px;
    transition: 0.5s;
}

ul{
    position:relative;
    list-style: none;
    height:95%;

}


.log-out{
    position: absolute;
    bottom: 0px;
    width:100%;
}

.log-out a{
    background: red;
}

ul li a:hover , .main , .box:hover ,td:hover{
    background-color: #ffffff55;
}

ul li a i{
    font-size:30px;
}


.menu:hover{
    width: 260px;
}

.content{
    width: 100%;
    margin: 10px;
}


.data-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:10px;
}

.box{
    background-color: #123;
    height: 150px;
    flex-basis:150px;
    flex-grow: 1;
    border-radius: 8px;
    display:flex;
    align-items: center;
    justify-content: space-around;
}



.title-info{
    background-color: #0481ff;
    padding:10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0px;
    border-radius: 8px;
}

.box i {
    font-size: 40px;
}

.box .data{
    text-align: center;
}

.box .data span{
    font-size: 30px;
}

table{
    width: 100%;
    margin: 8px;
    text-align: center;
    border-spacing: 8px;
}

td , th{
    height: 40px;
    background-color: #123;
    border-radius: 8px;
}

thead th{
    background-color: #0481ff;
}

.price{
    padding: 5px;
    background: green;
}

.Count{
    padding: 5px;    
    background-color: gold;
    color:black;
}

