/* Styles for the aside element */
.sidenav {
    position: fixed;
    width: 250px;
    background-color: #01643D;
    color: #ecf0f1;
    padding: 20px;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.nav-category {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.divider {
    height: 1px;
    background-color: #bdc3c7;
    margin: 5px 0;
    border: none;
}

.sidenav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sidenav-item {
    margin-bottom: 10px;
}

.sidenav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ecf0f1;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidenav-link i {
    margin-right: 10px;
    font-size: 16px;
}

.sidenav-link:hover {
    background-color: #c4ffd1;
}

.storage-status {
    margin-top: 20px;
    font-size: 14px;
    color: #bdc3c7;
}

.storage-status p {
    margin: 0 0 10px 0;
}

.progress {
    background-color: #bebebe;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    background-color: #1abc9c;
    height: 100%;
    transition: width 0.3s ease;
}

.btn-link {
    text-decoration: none;
    font-size: 14px;
    color: #eeeeee;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #16a085;
}

.sidenav-item a.sidenav-link {
    color: #f5f5f5 !important;
    /* Quitar subrayado */
    text-decoration: none !important;
    /* tamaño letra */
    font-size: 14px !important;
    font-weight: 100;
}

.sidenav-item a.sidenav-link:hover {
    background-color: #1abc9c !important;
}

a.sidenav-link.active {
    background-color: #0e4137 !important;
    color: #ffffff !important;
}