/* Modern Feed Navigation Cards Styling */
.feed-nav-cards {
  display: flex;
  gap: 1rem !important;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}

.feed-card {
  background: #ffffff !important;
  border: 1px solid #e1e6f0 !important;
  border-radius: 12px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 16px 20px !important;
  min-width: 200px !important;
  max-width: 240px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  position: relative;
}

.feed-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
  border-color: #129ed9 !important;
}

.feed-card i {
  font-size: 24px !important;
  margin-right: 16px !important;
  flex-shrink: 0;
  color: #129ed9 !important;
}

.feed-card.active {
  background: #f8fbfe !important;
  border-color: #129ed9 !important;
  color: #2c3e50 !important;
  box-shadow: 0 2px 10px rgba(18, 158, 217, 0.08) !important;
}

.feed-card.active:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(18, 158, 217, 0.12) !important;
}

.feed-card.active i {
  color: #129ed9 !important;
}

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

.feed-card-title {
  font-size: 16px;
  font-weight: 500 !important;
  margin-bottom: 4px;
  color: #2c3e50;
}

.feed-card.active .feed-card-title {
  color: #2c3e50 !important;
}

.feed-card-subtitle {
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 400;
  line-height: 1.3;
}

.feed-card.active .feed-card-subtitle {
  color: #7f8c8d !important;
} 