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

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

.profile {
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: capitalize;
}

.photo {
    display: flex;
    height: 50px;
    width: 50px;
    overflow: hidden;
    border: 3px solid white;
    border-radius: 50%;
    flex-shrink: 0;
}

.photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.menu {
    background-color: #123;
    width: 40px;
    height: 100vh;
    margin: 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: 2s;
    border-radius: 8px;

}

.menu:hover {
    width: 200px;

}

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

}

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

#home {
    background-color: #456;
    width: max-content;
    border-radius: 8px;
}

ul li a:hover {
    background-color: #456;
    transition: 1s;
}

.log-out {

    position: absolute;
    bottom: 0;
    width: 80%;
    background-color: red;
}

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

.content {
    margin: 10px;
    width: 100%;


}

.info {
    background-color: rgb(93, 107, 233);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
}

.data-info {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;


}

.box {
    width: 350px;
    height: 200px;
    align-items: center;
    align-content: center;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: larger;
    background-color: #123;
    flex-grow: 1;
    margin-right: 10px;
}

.box:hover {
    background-color: rgb(29, 29, 105);
    transition: 1s;
}

#icons {
    size: 80px;
    margin-right: 50px;
    margin-left: 10px;
}

.box p {
    margin-bottom: 10px;
}

.box i {
    font-size: 40px;
    color: white;
}

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

.mabe {
    margin-top: 10px;
}

table {
    width: 100%;
    text-align: center;
    margin: 10px;
    border-spacing: 8px;
    height: 400px;


}

thead {
    background-color: #123;
    border-radius: 10px;
    height: 40px;
}

tbody {

    background-image: linear-gradient(to bottom, gray, #456, #123);
}

.price {
    padding: 5px;
    background-color: green;
}

td,
th {
    border-radius: 15px;
}

td:hover {
    background-color: blueviolet;
    transition: 0.5s;
}

.count {
    background-color: goldenrod;
}