/* Menu vertical */
.vertical-menu {
    width: 30px; /* Largura inicial encolhida */
    height: 100vh;
    background-color:  oklch(27.8% .033 256.848);
    overflow: hidden;
    transition: width 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.vertical-menu:hover {
    width: 120px;  
} 


.menu-toggle {
    background-color: #244d77;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    /* display: none; Esconde os itens inicialmente */
}

.menu-items li {
    padding: 10px;
}

.menu-items li a {
    color: rgb(6, 2, 111) !important;
    text-decoration: none;
    display: block;
}

.menu-items li a:hover {
    background-color: #8bbae7;
    border-radius: 4px;
}