.survey-navigation {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.survey-navigation a {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #495057;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.survey-navigation a:hover {
  background-color: #f8f9fa;
  border-color: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.survey-navigation a.active {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  border-color: #1565c0;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  transform: translateY(-2px);
}

.survey-navigation a.active:hover {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
}

.nav-emoji {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.survey-navigation a:hover .nav-emoji {
  transform: scale(1.2);
}

.survey-navigation a.active .nav-emoji {
  transform: scale(1.15);
}


/* Questions page specific styles */
/* Common styles are in SurveyInsights.css */

.category-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
}

.category-selector label {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.category-selector select {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23374151%27 d=%27M6 9L1 4h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  min-width: 200px;
}

.category-selector select:hover {
  border-color: #1976d2;
  background-color: white;
}

.category-selector select:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
  background-color: white;
}

.question-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
}

.question-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.question-label {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.question-metric {
  min-width: 120px;
  text-align: right;
}

.question-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.25rem;
}

.question-metric-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expander {
  margin-top: 1rem;
}

.expander-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.expander-header:hover {
  background: #e5e7eb;
}

.expander-content {
  padding: 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.comment-item {
  padding: 1rem;
  background: #f9fafb;
  border-left: 3px solid #667eea;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.comment-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.comment-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Heatmap page specific styles */
/* Common styles are in SurveyInsights.css */

.heatmap-container {
  margin-bottom: 2rem;
  overflow-x: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.heatmap-table {
  display: table;
  width: 100%;
  min-width: max-content;
}

.heatmap-header {
  display: flex;
  margin-bottom: 0.5rem;
}

.corner-cell {
  width: 200px;
  min-width: 200px;
}

.header-cell {
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #333;
  background: #f5f5f5;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.header-cell:last-child {
  margin-right: 0;
}

.heatmap-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.row-label {
  width: 200px;
  min-width: 200px;
  padding: 1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.heatmap-cell {
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: white;
  border-radius: 4px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.heatmap-cell:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.heatmap-cell:last-child {
  margin-right: 0;
}

.legend {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.legend h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
}

.legend-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-item span {
  color: #333;
  font-size: 0.875rem;
}

.legend-color {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* Focus Areas page specific styles */
/* Common styles are in SurveyInsights.css */

.question-category {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Favorability Bar */
.favorability-bar {
  display: flex;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  background: #e5e7eb;
}

.favorability-bar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.favorability-bar-segment:hover {
  opacity: 0.9;
  cursor: default;
}

/* Response Rates page specific styles */
/* Common styles are in SurveyInsights.css */

.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.breakdown-header h2 {
  margin: 0;
}

.breakdown-tabs {
  display: flex;
  gap: 0.5rem;
  background: #f5f5f5;
  padding: 0.25rem;
  border-radius: 8px;
}

.breakdown-tabs button {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.breakdown-tabs button:hover {
  background: rgba(25, 118, 210, 0.1);
  color: #1976d2;
}

.breakdown-tabs button.active {
  background: #1976d2;
  color: white;
}

.breakdown-chart {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.department-breakdown {
  margin-bottom: 3rem;
}

.department-table {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.department-table table {
  width: 100%;
  border-collapse: collapse;
}

.department-table th,
.department-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.department-table th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #333;
}

.department-table tbody tr:hover {
  background-color: #f5f5f5;
}

.completion-section {
  margin-bottom: 2rem;
}

.completion-stats {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 4px;
}

.completion-stats p {
  margin: 0.5rem 0;
  color: #4b5563;
}

/* Common styles for all Survey Insights pages */

/* Main container */
.survey-insights-container {
  min-height: 100vh;
  background: #f5f5f5;
}

/* Global typography */
.survey-insights-container h1 {
  font-size: 2rem;
  font-weight: 600;
}

.survey-insights-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.survey-insights-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.survey-insights-container section {
  margin-bottom: 2rem;
}

/* Page containers */
.overview-page,
.questions-page,
.heatmap-page,
.focus-areas-page,
.ai-insights-page,
.response-rates-page {
  min-height: 100vh;
  background-color: #f5f5f5;
}

/* Content wrappers */
.overview-content,
.questions-content,
.heatmap-content,
.focus-areas-content,
.ai-insights-content,
.response-rates-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.overview-content h1,
.questions-content h1,
.heatmap-content h1,
.focus-areas-content h1,
.ai-insights-content h1,
.response-rates-content h1 {
  margin-bottom: 1rem;
  color: #333;
}

/* Page layout */
.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.page-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.page-header p {
  color: #6b7280;
  margin: 0;
  font-size: 1rem;
}

/* Sections */
.section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
}

/* Metric cards */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.metric-delta {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 2rem 0;
}

/* Chart container */
.chart-container {
  margin-bottom: 1rem;
  min-height: 200px;
}

/* Tables */
.table-container {
  overflow-x: auto;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
}

.table-container th,
.table-container td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.table-container th {
  background-color: #f9fafb;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-container td {
  color: #1f2937;
}

.table-container tbody tr:hover {
  background-color: #f9fafb;
}

/* Caption text */
.caption {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Description sections */
.intro-section,
.heatmap-description {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #e3f2fd;
  border-radius: 8px;
  color: #1565c0;
}

.intro-section p,
.heatmap-description p {
  margin: 0;
  line-height: 1.6;
}

/* Insights sections */
.insights-section {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.insights-section h2 {
  margin-top: 0;
  color: #333;
}

.insights-section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.insights-section li {
  margin-bottom: 0.5rem;
  color: #666;
}

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

.insight-card {
  padding: 1.5rem;
  border-radius: 8px;
  background: white;
  border-left: 4px solid #ccc;
}

.insight-card.positive {
  border-left-color: #4caf50;
  background: #f1f8f4;
}

.insight-card.negative {
  border-left-color: #f44336;
  background: #fef1f0;
}

.insight-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #333;
}

.insight-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .survey-insights-container {
    padding: 1rem;
  }

  .survey-insights-container h1 {
    font-size: 1.5rem;
  }

  .survey-insights-container h2 {
    font-size: 1.25rem;
  }

  .metrics-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .heatmap-container {
    overflow-x: auto;
  }
}



/*# sourceMappingURL=main.a526277b.css.map*/