/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #f7f8f8;
  --foreground: #1f2a2a;
  --muted: #687575;
  --line: #dde3e3;
  --sidebar: #142020;
  --accent: #53dda3;
  --accent-dark: #078956;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: var(--foreground);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

a {
  color: inherit;
}

.shell {
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.sidebar {
  background: var(--sidebar);
  color: #f1f6f4;
  padding: 28px 18px;
}

.brand {
  color: #fff;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  font-size: 24px;
  font-weight: 800;
  display: flex;
}

.brand svg {
  color: var(--accent);
}

.navGroup {
  color: #a5b1b1;
  text-transform: uppercase;
  margin: 24px 4px 10px;
  font-size: 12px;
  font-weight: 800;
}

.navItem {
  color: #dfe7e7;
  border-radius: 6px;
  align-items: center;
  gap: 14px;
  height: 46px;
  padding: 0 12px;
  font-weight: 650;
  text-decoration: none;
  display: flex;
}

.navItem.active {
  color: var(--accent);
  background: #ffffff1a;
}

.workspace {
  background: #fff;
  min-width: 0;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 40px;
  display: flex;
}

.topbar input {
  width: min(440px, 100%);
  height: 48px;
  color: var(--foreground);
  border: 1px solid #d7dddd;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 16px;
}

button {
  background: var(--accent);
  color: #0c2b20;
  cursor: pointer;
  font: inherit;
  border: 0;
  border-radius: 6px;
  font-weight: 750;
}

.topbar button {
  height: 44px;
  padding: 0 18px;
}

.content {
  padding: 34px 52px 72px;
}

h1 {
  margin: 0 0 44px;
  font-size: 28px;
}

.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  display: grid;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 6px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 10px;
  min-height: 82px;
  padding: 15px 16px;
  display: grid;
}

.metric svg {
  color: var(--accent-dark);
}

.metric span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.metric strong {
  grid-column: 1 / -1;
  font-size: 26px;
}

.toolbar {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  display: flex;
}

.toolbar button {
  color: #2c3636;
  text-align: left;
  background: #fff;
  border: 1px solid #cfd8d8;
  min-width: 280px;
  height: 46px;
  padding: 0 16px;
}

.toolbar a {
  color: var(--accent-dark);
  font-weight: 700;
}

.dashboardGrid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 24px;
  display: grid;
}

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

th {
  border-bottom: 1px solid var(--line);
  color: #8a9494;
  text-align: left;
  text-transform: uppercase;
  padding: 16px;
  font-size: 13px;
}

td {
  vertical-align: top;
  border-bottom: 1px solid #edf0f0;
  padding: 18px 16px;
}

td strong, td span {
  display: block;
}

td span {
  color: #8a9494;
  margin-top: 4px;
}

.pill {
  color: #4b5555;
  background: #f4f6f6;
  border: 1px solid #d8dddd;
  border-radius: 999px;
  padding: 3px 11px;
  display: inline-block;
}

.iconButton {
  color: #526060;
  background: #fff;
  border: 1px solid #e2e7e7;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
}

.activityPanel {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.panelHeader {
  color: #2d3939;
  align-items: center;
  gap: 9px;
  height: 52px;
  display: flex;
}

.panelHeader svg {
  color: var(--accent-dark);
}

.activityList {
  gap: 14px;
  display: grid;
}

.activityRow {
  border-bottom: 1px solid #edf0f0;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  display: grid;
}

.activityRow strong, .activityRow span, .activityRow small {
  display: block;
}

.activityRow span, .activityRow small {
  color: #7d8989;
  margin-top: 3px;
}

.activityRow small {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.dot {
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin-top: 6px;
}

.dot.open {
  background: var(--accent);
}

.dot.click {
  background: #4f8dff;
}

.emptyState {
  gap: 4px;
  padding: 24px 0;
  display: grid;
}

.emptyState.compact {
  padding: 14px 0;
}

.emptyState span {
  color: var(--muted);
}

@media (max-width: 820px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .topbar, .content {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .activityPanel {
    border-left: 0;
    padding-left: 0;
  }
}

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