* {
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    user-select: none;
}

.container {
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    align-items: center;
    padding-left: 30px;
    background: #e4dbdb;
    position: sticky;
    top: 0;
    z-index: 2;
}

nav img {
    width: 35px;
    padding: 10px;
}

.main {
    display: grid;
    grid-template-columns: 0.7fr 3.1fr 0.7fr;
}

.main img {
    width: 30px;
}

.main .aside-left {
    height: 100vh;
    padding: 10px;
    background: #fff;
}

.main .aside-left ul {
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 10px;
}

.main .aside-left ul li {
    display: flex;
    align-items: center;
    list-style: none;
    background: orange;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
}

.main .aside-left ul li:hover {
    background: #fff;
    box-shadow: 1px 1px 1px 1px orange;
    transition-duration: 0.5s;
}

.main .aside-left ul li a:hover {
    color: orange;
}

.main .aside-left ul li a {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.aside-right {
    margin-top: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.aside-right .stock {
    background: orange;
    border-radius: 5px;
    width: 230px;
    display: flex;
    gap: 10px;
    align-items: center;
    height: 40px;
    padding: 10px;
    justify-content: space-between;
    color: #fff;
}

.aside-center {
    padding: 5px 10px;
}

.aside-center h2 {
    text-align: center;
}

.aside-center table {
    margin-top: 40px;
    border-collapse: collapse;
}

table th {
    background: orange;
    color: #fff;
}

th,
td {
    border: 1px solid orange;
    width: 220px;
    height: 40px;
    text-align: center;
}

tbody tr:hover {
    box-shadow: 0px 0px 4px 2px orange;
}

tr:nth-child(even) {
    background: rgb(236, 228, 214);
}

td:hover {
    color: orange;
    font-size: 18px;
}