nav {
    display: flex !important;
    flex-direction: column !important;
    width: 60% !important;
    height: 100% !important;
    position: static;
}

.navbar {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: min-content;
    height: 100vh !important;
}

.container-fluid {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    margin-top: 20px;
    margin-left: 10px;
}

.navbar-nav {
    display: flex;
    width: 100%;
    flex-direction: column !important;
    align-items: left;
}

.navbar>.container-fluid {
    align-items: normal
}

.menu-lateral-admin {
    width: 14%;
    z-index: 1;
}

.mostra {
    width: calc(20% + 2%);
    overflow: hidden;
    transition: width 0.8s ease-in-out;
    /* Adicione a mesma transição aqui */
}

.hidden {
    width: 0;
    overflow: hidden;
    transition: width 0.8s ease-in-out;
    /* Adicione a mesma transição aqui */
}


.menu-item {
    background: rgb(36, 38, 40);
    background: linear-gradient(90deg, rgba(36, 38, 40, 1) 0%, rgba(35, 39, 43, 1) 58%, rgba(33, 37, 41, 1) 100%);
    margin-bottom: 10px;
    width: 100% !important;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    transition: 1.3s ease-in-out;
    z-index: 0;
}

.menu-item:hover {
    /* background-color: #48e223;
    color: black; */
    position: relative;
    border: 1px solid var(--green-color);
    color: var(--text-light);
    background-color: var(--dark-bg);
}

.menu-item:hover::before {
    content: '';
    background-color: #2ad4ff;
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    animation: bgCollorButton 2s ease-in-out;
}

@keyframes bgCollorButton {
    0% {
        width: 0;
    }

    70% {
        width: 80%;
    }
}

.dropdown-menu.meu {
    width: max-content;
    font-size: medium;
    text-transform: lowercase !important;
}

.dropdown-item {
    text-transform: capitalize;
}

/* .nav-item {
    color: white;
} */