.admin-header {
    border-bottom: 1px solid #dee2e6;
    z-index: 1034;
}
.side-menu {
    font-size: 14px;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    padding-left: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.side-menu:hover {
    background-color: #cde5ff;
    text-decoration: underline;
}
.side-menu.active {
    background-color: #cde5ff;
}

.side-menu-area {
    width: 300px;
    transform: translate(0, 0);
    transition: all 0.5s;
}
.side-menu-area.close {
    width: 0;
    transform: translate(-300px, 0);
}