#container {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 2rem;
}

h1 {
  text-align: start;
  color: #004080;
  text-shadow: 1px 1px 4px #0000001a;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: bold;
}

section {
  margin-bottom: 5rem;
}

section h2 {
  text-align: center;
  color: #004080;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}

section h2:after {
  content: "";
  background-color: #004080;
  border-radius: 2px;
  width: 60px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

section:not(:first-child):before {
  content: "";
  background: #0040801a;
  width: 80%;
  height: 2px;
  margin: 40px auto;
  display: block;
}

.content {
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  display: flex;
}

.card {
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 12px;
  width: 250px;
  padding: 20px;
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
  box-shadow: 0 6px 12px #0000001a;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px #0003;
}

.card h2 {
  color: #004080;
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  transition: color .3s ease-in-out;
}

.card h2:hover {
  color: #003060;
}

.card p {
  color: #666;
  margin: 10px 0 0;
  font-size: 1rem;
}

@media (width <= 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }
}

.dashboard-main-title {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 300;
}

.dashboard-section {
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.section-title-row {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.insight-badge {
  background: #ffe08a;
  border-radius: 20px;
  align-items: center;
  padding: 8px 15px;
  font-size: .9rem;
  display: flex;
}

.insight-badge .exclamation {
  background: #ffd257;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  font-weight: bold;
  display: flex;
}

.metrics-container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  display: grid;
}

.metric-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px #0000001a;
}

.metric-value {
  color: #2c3e50;
  margin-bottom: .5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.metric-label {
  color: #718096;
  font-size: .9rem;
}

.chart-container {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 3px #0000001a;
}
/*# sourceMappingURL=index.aa0eede5.css.map */
