.menu-link.active {
    color: #1e40af;
    background-color: rgba(59, 130, 246, 0.08);
    border-radius: 6px;
    position: relative;
    border-left: 3px solid #3b82f6;
}

.mobile-nav-custom {
  display: none;
}

@media (max-width: 767px) {
  .mobile-nav-custom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  }

  .mobile-group-custom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
  }

  .mobile-widget-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #b0b0b0;
    font-size: 10px;
    padding: 4px 0;
    flex: 1;
    transition: background-color 0.3s, color 0.3s;
    height: 60px;
    border-radius: 8px;
    margin: 0 4px;
  }
  
  .mobile-widget-custom i {
    font-size: 20px;
    margin-bottom: 3px;
    color: #b0b0b0;
  }

  .mobile-widget-custom span {
    white-space: nowrap;
  }

  .mobile-widget-custom.active {
    background-color: #2c2c2c;
    color: #fff;
  }

  .mobile-widget-custom.active i {
    color: #fff;
  }
}

@media (max-width: 767px) {
    .mobile-widget-custom:not(.active) i,
    .mobile-widget-custom:not(.active) span {
        opacity: 0.7;
    }

    .mobile-widget-custom.active {
        background-color: #2c2c2c;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }
}
