/* Modern SaaS-style Tab Navigation */
.feed-nav-cards {
  display: flex;
  gap: 0 !important;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e5e9;
  padding-bottom: 0;
}

.feed-card {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 12px 20px !important;
  min-width: 160px !important;
  max-width: 200px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  position: relative;
  margin-bottom: -1px;
  font-weight: 500;
  color: #6b7280;
}

.feed-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-bottom-color: #d1d5db !important;
  background: #f9fafb !important;
  color: #374151;
}

.feed-card i {
  font-size: 18px !important;
  margin-right: 10px !important;
  flex-shrink: 0;
  color: #9ca3af !important;
}

.feed-card.active {
  background: transparent !important;
  border-bottom-color: #4f46e5 !important;
  color: #4f46e5 !important;
  box-shadow: none !important;
}

.feed-card.active:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.feed-card.active i {
  color: #4f46e5 !important;
}

.feed-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.feed-card-title {
  font-size: 14px;
  font-weight: 500 !important;
  margin-bottom: 2px;
  color: inherit;
  line-height: 1.25;
}

.feed-card.active .feed-card-title {
  color: inherit !important;
}

.feed-card-subtitle {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  line-height: 1.3;
}

.feed-card.active .feed-card-subtitle {
  color: #6b7280 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .feed-nav-cards {
    flex-direction: column;
    border-bottom: none;
    gap: 4px !important;
  }
  
  .feed-card {
    border-bottom: none !important;
    border-left: 3px solid transparent !important;
    padding: 12px 16px !important;
    margin-bottom: 0;
  }
  
  .feed-card.active {
    border-left-color: #4f46e5 !important;
    border-bottom-color: transparent !important;
    background: #f8fafc !important;
  }
  
  .feed-card:hover {
    border-bottom-color: transparent !important;
    border-left-color: #d1d5db !important;
  }
} 