/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #f5f7fa;
  --panel: #fff;
  --panel-strong: #f9fafb;
  --text: #17202a;
  --muted: #667085;
  --line: #d8dee8;
  --nav: #151c24;
  --nav-soft: #202a35;
  --teal: #0f766e;
  --teal-soft: #d9f3ef;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  --red: #b42318;
  --red-soft: #fee4e2;
  --green: #047857;
  --green-soft: #dcfce7;
  --shadow: 0 1px 2px #10182814;
}

* {
  box-sizing: border-box;
}

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

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

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

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

.sidebar {
  background: var(--nav);
  color: #edf2f7;
  height: 100vh;
  padding: 18px 14px;
  position: sticky;
  top: 0;
}

.brand {
  border-bottom: 1px solid #ffffff1f;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 18px;
  display: flex;
}

.brand-mark {
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  place-items: center;
  width: 36px;
  height: 36px;
  font-weight: 800;
  display: grid;
}

.brand strong, .brand small {
  display: block;
}

.brand small {
  color: #aab4c0;
  margin-top: 2px;
}

.nav-list {
  gap: 4px;
  padding-top: 18px;
  display: grid;
}

.nav-link {
  color: #d7dee8;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  display: flex;
}

.nav-link:hover {
  background: var(--nav-soft);
  color: #fff;
}

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

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

.page-header h1 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.2;
}

.page-header p {
  color: var(--muted);
  max-width: 760px;
  margin: 6px 0 0;
}

.page-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.grid {
  gap: 16px;
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.panel-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  display: flex;
}

.panel-header h2, .panel-header h3 {
  margin: 0;
  font-size: 1rem;
}

.panel-body {
  padding: 18px;
}

.stat-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  min-height: 112px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  gap: 6px;
  padding: 16px;
  display: grid;
}

.stat-tile span, .stat-tile small {
  color: var(--muted);
}

.stat-tile strong {
  font-size: 2rem;
  line-height: 1;
}

.stat-warning {
  border-left-color: var(--amber);
}

.stat-danger {
  border-left-color: var(--red);
}

.stat-success {
  border-left-color: var(--green);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
}

th, td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  padding: 12px 14px;
}

th {
  background: var(--panel-strong);
  color: #344054;
  text-transform: uppercase;
  font-size: .78rem;
}

td {
  color: #263241;
}

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

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  color: #344054;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  display: grid;
}

input, select, textarea {
  width: 100%;
  color: var(--text);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 10px 11px;
}

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

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  outline: 2px solid #0f766e38;
}

.button-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.btn {
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  font-weight: 700;
  display: inline-flex;
}

.btn:hover {
  filter: brightness(.96);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: #fff;
}

.btn-blue {
  background: var(--blue);
}

.btn-amber {
  background: var(--amber);
}

.btn-red {
  background: var(--red);
}

.icon-btn {
  width: 36px;
  height: 36px;
  padding: 0;
}

.badge {
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  font-size: .78rem;
  font-weight: 800;
  display: inline-flex;
}

.badge-neutral {
  color: #344054;
  background: #eef2f6;
}

.badge-green {
  color: var(--green);
  background: var(--green-soft);
}

.badge-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.badge-amber {
  color: var(--amber);
  background: var(--amber-soft);
}

.badge-red {
  color: var(--red);
  background: var(--red-soft);
}

.badge-teal {
  color: var(--teal);
  background: var(--teal-soft);
}

.error-text {
  color: var(--red);
  font-weight: 700;
}

.success-text {
  color: var(--green);
  font-weight: 700;
}

.stack {
  gap: 16px;
  display: grid;
}

.split {
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, .6fr);
  align-items: start;
  gap: 16px;
  display: grid;
}

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

  .sidebar {
    height: auto;
    position: static;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-panel {
    padding: 18px;
  }

  .grid-2, .grid-3, .grid-4, .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-header {
    display: grid;
  }

  .nav-list {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: flex-start;
  }
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.queue-row {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: flex;
}

.queue-row:last-child {
  border-bottom: 0;
}

.queue-row p {
  margin: 4px 0 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  width: 100%;
}

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