

.container-master {
    background-color: rgb(42, 63, 252);
    width: 256px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
}

.container-inside {
    width: 235px;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.nav-item {
    background-color: rgb(255, 210, 12);
    color: rgb(17, 17, 17);
    padding: 12px;
    width: 90%;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}

.nav-item:hover {
    background-color: rgb(63, 63, 63);
    transition: 0.5s ease-in-out;
}

.active {
    background-color: black;
    color: white;
}

.active:hover {
    background-color: red;
    color: white;
}