/* Application styles */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #F5F3FF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.closebtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #FFFFFF;
    color: #9CA3AF;
    padding: 8px;
    radius: 8px;
}

.openbtn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    background-color: #FFFFFF;
    color: #9CA3AF;
    padding: 8px;
    border: none;
    radius: 8px;
}

.openbtn:hover {
    background-color: #F5F3FF;
}

.sidebar:hover {
    background-color: #FFFFFF;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 85vh) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
}

.collapsible {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active, .collapsible:hover {
    background-color: #FFFFFF;
}

.content {
    display: none;
    overflow: hidden;
    background-color: #FFFFFF;
}

.layout {
    width: 70px;
    height: 100%;
    background-color: #F5F3FF;
}

.layout button {
    display: block;
    margin: auto;
}

.container {
    radius: 12px;
    width: 1150px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: auto;
    height: auto;
    align-items: center;
    background: #FFFFFF;
    border-radius: 24px;
    margin-top: 15px;
}

main, body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: auto;
}


.left-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70px; /* Ajusta el ancho según sea necesario */
    padding: 10px;
    background-color: #F5F3FF;
}

.menu-container {
    display: flex;
    flex-direction: column;
    height: 90vh;
    padding: 20px;
    overflow: hidden;
    background-color: #F5F3FF;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #F7F7F7;
}

.menu-sections {
    font-size: 16px;
    font-weight: bold;
}

.collapsible {
    cursor: pointer;
}

.content {
    margin-left: 20px;
    display: none;
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
}

.footer-item {
    margin-top: auto; /* Empuja el item hacia la parte inferior */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;
    font-weight: bold;
}
