/* Monthly Niches */
.monthly-niche-card {
  background: rgba(31, 41, 55, 0.7);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.monthly-niche-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(31, 41, 55, 0.9);
}

.monthly-niche-header {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: transparent; /* Ensure no background color */
}

.monthly-niche-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light-color);
  margin: 0;
  background: transparent; /* Ensure no background color */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Add text shadow for better visibility */
}

.monthly-niche-description {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.monthly-niche-extended-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  border-left: 2px solid var(--primary-color);
  padding-left: 0.75rem;
}

.monthly-niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.monthly-niche-tag {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.monthly-niche-platforms,
.monthly-niche-tech-reqs {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.monthly-niche-platform,
.monthly-niche-tech-req {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-light);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  display: inline-block;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.monthly-niche-tech-req {
  background: rgba(16, 185, 129, 0.15);
  color: var(--secondary-color);
}

.monthly-niche-examples {
  margin-top: 1rem;
}

.monthly-niche-examples ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.monthly-niche-examples li {
  margin-bottom: 0.5rem;
}

.monthly-niche-metrics {
  background: rgba(17, 24, 39, 0.5);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
}

.month-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  background: transparent; /* Ensure no background color */
}

.month-header h3 {
  color: var(--light-color);
  background: transparent;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Event date */
.event-date {
  background: transparent;
  color: var(--primary-light) !important;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Tab buttons */
#niches-tab-btn.active,
#events-tab-btn.active {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

#niches-tab-btn,
#events-tab-btn {
  min-width: 100px;
  text-align: center;
}
