/* [project]/app/dashboard/analytics/analytics.module.css [app-client] (css) */
.analytics-module__HSNMPa__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.analytics-module__HSNMPa__header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  display: flex;
}

.analytics-module__HSNMPa__title {
  color: var(--text-main);
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 700;
}

.analytics-module__HSNMPa__subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.analytics-module__HSNMPa__exportBtn {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.analytics-module__HSNMPa__exportBtn:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.analytics-module__HSNMPa__metricsGrid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: grid;
}

.analytics-module__HSNMPa__metricCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  transition: all .2s;
  display: flex;
}

.analytics-module__HSNMPa__metricCard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.analytics-module__HSNMPa__metricIcon {
  border-radius: var(--radius-md);
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.analytics-module__HSNMPa__metricLabel {
  color: var(--text-secondary);
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 500;
}

.analytics-module__HSNMPa__metricValue {
  color: var(--text-main);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.analytics-module__HSNMPa__section {
  margin-bottom: 3rem;
}

.analytics-module__HSNMPa__sectionTitle {
  color: var(--text-main);
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.analytics-module__HSNMPa__chartCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.analytics-module__HSNMPa__barChart {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.analytics-module__HSNMPa__barItem {
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  gap: 1rem;
  display: grid;
}

.analytics-module__HSNMPa__barLabel {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.analytics-module__HSNMPa__barRank {
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
}

.analytics-module__HSNMPa__barName {
  color: var(--text-main);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  overflow: hidden;
}

.analytics-module__HSNMPa__barWrapper {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  height: 32px;
  position: relative;
  overflow: hidden;
}

.analytics-module__HSNMPa__barFill {
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  border-radius: var(--radius-md);
  height: 100%;
  transition: width .6s;
}

.analytics-module__HSNMPa__barCount {
  color: var(--text-main);
  text-align: right;
  font-weight: 700;
}

.analytics-module__HSNMPa__insightsGrid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.analytics-module__HSNMPa__insightCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: all .2s;
}

.analytics-module__HSNMPa__insightCard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.analytics-module__HSNMPa__insightTitle {
  color: var(--text-main);
  margin-bottom: .75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.analytics-module__HSNMPa__insightText {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.6;
}

.analytics-module__HSNMPa__emptyState {
  color: var(--text-tertiary);
  text-align: center;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 3rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .analytics-module__HSNMPa__container {
    padding: 16px;
  }

  .analytics-module__HSNMPa__header {
    flex-direction: column;
    gap: 1rem;
  }

  .analytics-module__HSNMPa__title {
    font-size: 1.5rem;
  }

  .analytics-module__HSNMPa__barItem {
    border-bottom: 1px solid var(--border-subtle);
    grid-template-columns: 1fr;
    gap: .5rem;
    padding-bottom: 1rem;
  }

  .analytics-module__HSNMPa__barItem:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .analytics-module__HSNMPa__barLabel {
    width: 100%;
    margin-bottom: .25rem;
  }

  .analytics-module__HSNMPa__barWrapper {
    width: 100%;
  }

  .analytics-module__HSNMPa__barCount {
    text-align: left;
    color: var(--text-secondary);
    font-size: .9rem;
  }

  .analytics-module__HSNMPa__barItem {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .analytics-module__HSNMPa__exportBtn {
    justify-content: center;
    width: 100%;
  }

  .analytics-module__HSNMPa__metricsGrid, .analytics-module__HSNMPa__insightsGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/*# sourceMappingURL=app_dashboard_analytics_analytics_module_0976b0fb.css.map*/