/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --ax-bg: #f8f9fa;
  --ax-surface: #fff;
  --ax-surface-soft: #f3f4f5;
  --ax-surface-muted: #edeeef;
  --ax-border: #d7dde4;
  --ax-border-strong: #bfc7d3;
  --ax-text: #191c1d;
  --ax-text-muted: #5f6b76;
  --ax-primary: #0061a4;
  --ax-primary-soft: #dceeff;
  --ax-primary-strong: #00497d;
  --ax-success: #1f7a4d;
  --ax-success-soft: #dcfce7;
  --ax-warning: #b45309;
  --ax-warning-soft: #fff7ed;
  --ax-danger: #b91c1c;
  --ax-danger-soft: #fee2e2;
  --ax-shadow: 0 16px 40px #0f172a0f;
  --ax-radius: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  background: var(--ax-bg);
}

body {
  background: var(--ax-bg);
  color: var(--ax-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

.ax-shell {
  background: var(--ax-bg);
  min-height: 100vh;
}

.ax-sidebar {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 30;
  background: #f8f9faeb;
  border-right: 1px solid #bfc7d38c;
  flex-direction: column;
  gap: 22px;
  width: 248px;
  padding: 28px 18px;
  display: flex;
  position: fixed;
  inset: 0 auto 0 0;
}

.ax-brand-title {
  letter-spacing: -.04em;
  color: var(--ax-primary);
  font-size: 24px;
  font-weight: 800;
}

.ax-brand-subtitle {
  color: var(--ax-text-muted);
  letter-spacing: .08em;
  margin-top: 4px;
  font-size: 11px;
}

.ax-nav {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.ax-nav-link {
  color: var(--ax-text-muted);
  border-left: 4px solid #0000;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  transition: all .2s;
  display: flex;
}

.ax-nav-link:hover {
  background: var(--ax-surface-soft);
  color: var(--ax-primary);
}

.ax-nav-link.active {
  background: var(--ax-surface);
  color: var(--ax-primary);
  border-left-color: var(--ax-primary);
  font-weight: 700;
  box-shadow: 0 8px 20px #0061a414;
}

.ax-sidebar-footer {
  border-top: 1px solid #bfc7d380;
  margin-top: auto;
  padding-top: 18px;
}

.ax-user-chip {
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  display: flex;
}

.ax-avatar {
  background: linear-gradient(135deg, var(--ax-primary), #66a6e6);
  color: #fff;
  border-radius: 999px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-weight: 700;
  display: grid;
}

.ax-shell-main {
  min-height: 100vh;
  margin-left: 248px;
}

.ax-topbar {
  z-index: 20;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #f8f9fad6;
  justify-content: flex-end;
  align-items: center;
  height: 72px;
  padding: 16px 28px;
  display: flex;
  position: sticky;
  top: 0;
}

.ax-top-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.ax-btn, .ax-btn-secondary, .ax-btn-danger {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  transition: all .18s;
}

.ax-btn {
  background: linear-gradient(135deg, var(--ax-primary), #5699df);
  color: #fff;
  box-shadow: 0 12px 24px #0061a433;
}

.ax-btn:hover {
  transform: translateY(-1px);
}

.ax-btn-secondary {
  background: var(--ax-surface-muted);
  color: var(--ax-text);
}

.ax-btn-secondary:hover {
  background: #e2e8f0;
}

.ax-btn-danger {
  color: var(--ax-danger);
  text-align: center;
  background: none;
  border: 1px solid #b91c1c33;
  min-width: 112px;
}

.ax-btn-danger:hover {
  background: var(--ax-danger-soft);
}

.ax-page {
  padding: 28px;
}

.ax-page-header h1 {
  letter-spacing: -.04em;
  margin: 0;
  font-size: 32px;
}

.ax-page-header p {
  color: var(--ax-text-muted);
  margin: 8px 0 0;
}

.ax-grid {
  gap: 20px;
  display: grid;
}

.ax-card {
  border-radius: var(--ax-radius);
  box-shadow: var(--ax-shadow);
  background: #ffffffeb;
  border: 1px solid #bfc7d366;
  padding: 22px;
}

.ax-card h2, .ax-card h3, .ax-card h4 {
  margin: 0;
}

.ax-muted {
  color: var(--ax-text-muted);
}

.ax-pill {
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.ax-pill.primary {
  background: var(--ax-primary-soft);
  color: var(--ax-primary);
}

.ax-pill.success {
  background: var(--ax-success-soft);
  color: var(--ax-success);
}

.ax-pill.warning {
  background: var(--ax-warning-soft);
  color: var(--ax-warning);
}

.ax-pill.danger {
  background: var(--ax-danger-soft);
  color: var(--ax-danger);
}

.ax-meter {
  background: #e7ebef;
  border-radius: 999px;
  width: 100%;
  height: 10px;
  overflow: hidden;
}

.ax-meter > span {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ax-primary), #66a6e6);
  height: 100%;
  display: block;
}

.ax-list {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.ax-list-item {
  background: #fffc;
  border: 1px solid #bfc7d373;
  border-radius: 10px;
  padding: 14px 16px;
}

.ax-form-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.ax-field {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.ax-field label {
  color: var(--ax-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.ax-input, .ax-select, .ax-textarea {
  border: 1px solid var(--ax-border);
  background: #fff;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 13px 14px;
  transition: border-color .18s, box-shadow .18s;
}

.ax-input:focus, .ax-select:focus, .ax-textarea:focus {
  border-color: var(--ax-primary);
  box-shadow: 0 0 0 4px #0061a41f;
}

.ax-textarea {
  resize: vertical;
  min-height: 120px;
}

.ax-kpi-value {
  letter-spacing: -.04em;
  font-size: 40px;
  font-weight: 800;
}

.ax-two-col {
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  display: grid;
}

.ax-three-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.ax-card-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.ax-title-row {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  display: flex;
}

.ax-title-email {
  color: var(--ax-text-muted);
  font-size: 14px;
}

.ax-status-icon {
  background: var(--ax-surface-soft);
  width: 28px;
  height: 28px;
  color: var(--ax-primary);
  border-radius: 999px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.ax-status-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.ax-activity-timeline {
  padding-left: 22px;
  position: relative;
}

.ax-activity-timeline:before {
  content: "";
  background: #e2e8f0;
  width: 2px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 7px;
}

.ax-activity-item {
  padding-bottom: 18px;
  position: relative;
}

.ax-activity-item:last-child {
  padding-bottom: 0;
}

.ax-activity-item:before {
  content: "";
  background: var(--ax-primary);
  border: 2px solid #fff;
  border-radius: 999px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: -19px;
}

.ax-compose-panels {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
  display: grid;
}

.ax-panel-stretch {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.ax-panel-scroll {
  flex: 1;
  min-height: 0;
  max-height: 560px;
  overflow: auto;
}

@media (max-width: 1100px) {
  .ax-two-col, .ax-three-col, .ax-compose-panels, .ax-form-grid {
    grid-template-columns: 1fr;
  }

  .ax-panel-scroll {
    max-height: none;
  }
}

@media (max-width: 900px) {
  .ax-sidebar {
    width: auto;
    height: auto;
    position: static;
  }

  .ax-shell-main {
    margin-left: 0;
  }

  .ax-topbar, .ax-page {
    padding: 16px;
  }

  .ax-shell {
    display: block;
  }
}

/* [next]/internal/font/google/inter_5972bc34.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_5972bc34-module__OU16Qa__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__526bd4ea._.css.map*/