* {
  padding: 0;
  margin: 0;
  color: white;
  font-family: sans-serif;
}

body {
  display: flex;
  background-color: #001;
}

.img-box {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.img-box img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
}

.menu {
  background-color: #123;
  width: 60px;
  height: 100vh;
  padding: 20px;
  overflow: hidden;
  transition: 0.5s;
}

.menu:hover {
  width: 260px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 30px;
}

.profile h2 {
  font-size: 20px;
  text-transform: capitalize;
}

ul {
  list-style: none;
  position: relative;
  height: 95%;
}

ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  transition: 0.5s;
}

ul li a:hover {
  background-color: #ffffff55;
}

.log-out {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.log-out a {
  background-color: red;
}

.title-info {
  background-color: #0481ff;
  margin: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 10px 20px;
}

.content {
  margin-left: 60px;
  transition: 0.5s;
  width: 100%;
}

.data-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.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;
  transition: 0.3s;
}

.data-info .box:hover {
  transform: translateY(-5px);
  background: #134;
}

.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;
}
td, th{
  background-color: #123;
  height: 40px;
 border-radius: 8px;
}
th{
  background-color: #0080ff;
}
td:hover{
  background-color: #ffffff55;
}
.price,.quantity{
  border-radius: 6px;
  padding: 6px;
  
}
.price{
  background: green;
}
.quantity{
  background: gold;
  color: black;

}
