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

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

.img-box{
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
img{
    width: 100%;

}
.logo{
    display: flex;
    align-items: center;
    gap: 20px;

}

.logo h2{
    font-size: 1.5rem;
    text-transform: capitalize;
}


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

.menu:hover {
    width: 260px;



}



ul{
    list-style-type: none;
    height: 100%;
    width: 100%;

}

li a{
    display: block;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 50px;
    transition: all 0.5s;
}
li:hover{
    background-color: #456;
}

li p{
    font-size: 1.2rem;
}


.logout{
    position: relative;
    top: 25%;
    width: 100%;
}



.logout a{

    background-color: #a01;
}



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

}

.containt{
    width: 100%;
    margin: 10px;
}

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

}

.datainfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.box{
    background-color: #123;
    flex-basis: 150px;
    height: 150px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 0.5s;
}

.box i{
    font-size: 3rem;
}

.box:hover{
    background-color: #456;
}

.boxdata{
    font-size: 2.5rem;

}

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

td,th{
    background-color: #123;
    height: 40px;
    border-radius: 8px;
    transition: all 0.5s;
}

th{
    background-color: #0599ff;
}
td:hover{
    background-color: #456;
}
.price{
    padding: 6px;
    border-radius: 6px;
}

@media (max-width:510px) {
    .box{
        background-color: #123;
        flex-basis: 100px;
        height: 100px;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: space-around;
        transition: all 0.5s;
    }
    .box i{
            font-size: 1.8rem;
        }

    .boxdata{
        font-size: 1.5rem;
    }

    .menu{
        background-color: #123;
        width: 60px;
        height: 105vh;
        padding: 20px;
        overflow: hidden;
        transition: all 0.5s;
     
    }
    .menu:hover {
        width: 60px;
    }
}