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

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

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

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

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

.overview-module__3vt5QG__statCard {
  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;
}

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

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

.overview-module__3vt5QG__statContent {
  flex: 1;
}

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

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

.overview-module__3vt5QG__section {
  margin-bottom: 3rem;
}

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

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

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

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

.overview-module__3vt5QG__actionIcon {
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.overview-module__3vt5QG__actionContent {
  flex: 1;
}

.overview-module__3vt5QG__actionTitle {
  color: var(--text-main);
  margin-bottom: .25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.overview-module__3vt5QG__actionDescription {
  color: var(--text-secondary);
  font-size: .875rem;
}

.overview-module__3vt5QG__actionArrow {
  color: var(--text-tertiary);
  transition: transform .2s;
}

.overview-module__3vt5QG__actionCard:hover .overview-module__3vt5QG__actionArrow {
  color: var(--primary);
  transform: translateX(4px);
}

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

.overview-module__3vt5QG__activityList {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.overview-module__3vt5QG__activityItem {
  background: var(--bg-app);
  border-radius: var(--radius-md);
  border: 1px solid #0000;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  transition: background .2s;
  display: flex;
}

.overview-module__3vt5QG__activityItem:hover {
  background: var(--bg-surface);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.overview-module__3vt5QG__activityIcon {
  background: var(--primary-light);
  width: 40px;
  height: 40px;
  color: var(--primary);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.overview-module__3vt5QG__activityContent {
  flex: 1;
  min-width: 0;
}

.overview-module__3vt5QG__activityTitle {
  color: var(--text-main);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: .25rem;
  font-size: .95rem;
  font-weight: 600;
  overflow: hidden;
}

.overview-module__3vt5QG__activityTime {
  color: var(--text-tertiary);
  font-size: .8rem;
}

.overview-module__3vt5QG__activityBadge {
  background: var(--success-bg);
  color: var(--success);
  text-transform: capitalize;
  border-radius: 6px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

.overview-module__3vt5QG__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) {
  .overview-module__3vt5QG__container {
    padding: 16px;
  }

  .overview-module__3vt5QG__title {
    font-size: 1.5rem;
  }

  .overview-module__3vt5QG__header {
    flex-direction: column;
    gap: 8px;
  }

  .overview-module__3vt5QG__statsGrid, .overview-module__3vt5QG__actionsGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .overview-module__3vt5QG__activityItem {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .overview-module__3vt5QG__activityBadge {
    margin-left: auto;
  }
}

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