/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #fff;
  --surface-muted: #eef2f5;
  --text: #16202a;
  --muted: #657282;
  --border: #dce3ea;
  --accent: #0f8f7e;
  --accent-dark: #087266;
  --danger: #b42318;
  --shadow: 0 18px 45px #18233014;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  min-height: 100%;
  color: var(--text);
  letter-spacing: 0;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

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

button {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

input, textarea, select {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  background: #fff;
  border-radius: 7px;
  outline: none;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
}

textarea {
  resize: vertical;
  min-height: 88px;
}

label {
  color: var(--muted);
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}

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

.sidebar {
  border-right: 1px solid var(--border);
  color: #fff;
  background: #101820;
  height: 100vh;
  padding: 24px 18px;
  position: sticky;
  top: 0;
}

.brand {
  background: var(--accent);
  border-radius: 8px;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  font-weight: 800;
  display: grid;
}

.sidebar nav {
  gap: 8px;
  display: grid;
}

.sidebar a {
  color: #dbe8e6;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.sidebar a:hover {
  background: #ffffff14;
}

.workspace {
  min-width: 0;
  padding: 28px;
}

.topbar {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  display: flex;
}

.topbar h1, .panel h2 {
  margin: 0;
  line-height: 1.08;
}

.topbar h1 {
  font-size: 30px;
}

.topbar p {
  max-width: 720px;
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 15px;
}

.status {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent-dark);
  white-space: nowrap;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.alert {
  color: var(--danger);
  background: #fff4f2;
  border: 1px solid #b423183d;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 12px 14px;
}

.notice {
  color: var(--accent-dark);
  background: #effbf8;
  border: 1px solid #0f8f7e47;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 12px 14px;
}

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

.metric {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 8px;
  min-height: 86px;
  padding: 16px;
}

.metric span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  display: block;
}

.metric strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 10px;
  font-size: 26px;
  line-height: 1;
  display: block;
  overflow: hidden;
}

.grid {
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  gap: 16px;
  display: grid;
}

.panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 18px;
}

.bot-panel {
  margin-bottom: 16px;
}

.wide {
  grid-column: 1 / -1;
}

.profile-panel {
  gap: 13px;
  display: grid;
}

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

.panel-header h2 {
  font-size: 18px;
}

.panel-header span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.two-cols {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.public-link {
  overflow-wrap: anywhere;
  background: var(--surface-muted);
  color: var(--accent-dark);
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 13px;
  display: block;
}

.public-tools {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  display: grid;
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.status-item {
  border: 1px solid var(--border);
  background: #fbfcfd;
  border-radius: 8px;
  min-width: 0;
  padding: 13px;
}

.status-item span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  display: block;
}

.status-item strong {
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.35;
  display: block;
  overflow: hidden;
}

.status-item.good strong {
  color: var(--accent-dark);
}

.status-item.warn strong {
  color: var(--danger);
}

.inline-form {
  grid-template-columns: 1fr 1.3fr .7fr .7fr auto;
  gap: 9px;
  margin-bottom: 14px;
  display: grid;
}

.faq-form {
  gap: 10px;
  margin-bottom: 14px;
  display: grid;
}

.list, .lead-list {
  gap: 10px;
  display: grid;
}

.row, .lead {
  border: 1px solid var(--border);
  background: #fbfcfd;
  border-radius: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  display: grid;
}

.editable-row {
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, auto);
}

.inactive {
  opacity: .78;
  background: #f4f7f8;
}

.row strong, .lead strong {
  margin-bottom: 4px;
  display: block;
}

.row span, .lead span, .lead p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.edit-block {
  grid-column: 1 / -1;
  gap: 10px;
  display: grid;
}

.row-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.row-actions button, .public-tools button, .button-link {
  white-space: nowrap;
  min-height: 38px;
  padding: 9px 11px;
}

button.secondary-button, .button-link {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
}

button.danger-button {
  color: var(--danger);
  background: #fff5f3;
  border: 1px solid #b4231847;
}

.button-link {
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.badge {
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.badge.active {
  color: var(--accent-dark);
  background: #e9f8f4;
}

.badge.muted {
  background: var(--surface-muted);
  color: var(--muted);
}

.checkbox-label {
  align-items: center;
  gap: 8px;
  display: flex;
}

.checkbox-label input {
  width: auto;
}

.lead {
  grid-template-columns: 1.1fr 1fr 1.2fr 180px;
}

.lead select {
  min-width: 160px;
}

.faq-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.empty {
  color: var(--muted);
  margin: 0;
}

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

  .sidebar {
    justify-content: space-between;
    align-items: center;
    height: auto;
    display: flex;
    position: static;
  }

  .sidebar nav {
    flex-wrap: wrap;
    display: flex;
  }

  .metrics, .status-grid, .grid, .public-tools, .inline-form, .editable-row, .faq-row, .lead {
    grid-template-columns: 1fr;
  }

  .row-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .workspace {
    padding: 18px;
  }

  .topbar {
    display: grid;
  }

  .topbar h1 {
    font-size: 24px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }
}

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