/* CSS personalizado para navbar con menús desplegables */
.custom-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-nav-item {
    position: relative;
    margin-bottom: 2px;
}

.custom-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #8ba2b5;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 10px;
}

.custom-nav-link:hover {
    background-color: #3a5284 !important;
    color: #ffffff;
    text-decoration: none;
}

.custom-nav-link.active {
    background-color: #3a5284;
    color: #ffffff;
}

.custom-nav-icon {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.custom-nav-text {
    flex: 1;
}

.custom-dropdown-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-nav-item.open .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    border-radius: 4px;
    list-style: disc;
    padding-left: 20px;
}

.custom-nav-item.open .custom-submenu {
    max-height: 500px;
}

.custom-nav-link.has-active-child {
    background-color: #2c4875;
    color: #ffffff;
}

.custom-submenu-item {
    padding: 0;
    list-style: disc;
    margin-left: 15px;
    color: transparent  !important;
}

.custom-submenu-item a {
    color: #8ba2b5;
}

.custom-submenu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px 10px 50px;
    color: #8ba2b5;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 5px;
    line-height: 1.5;
    margin-left: -38px;
}

.custom-submenu-link:hover {
       background-color: #3a5284 !important;
    color: #ffffff;
    text-decoration: none;
}

.custom-submenu-link.active {
    background-color: #3a5284 !important;
    color: #ffffff;
}

.custom-submenu-icon {
    margin-right: 10px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.custom-category-title {
    padding: 15px 20px 5px 20px;
    color: #6c7b7d;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.custom-category-title:first-child {
    margin-top: 0;
}