/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --bg: #f6f7f9;
  --panel: #fff;
  --panel-subtle: #f9fafb;
  --text: #17202a;
  --muted: #5f6b7a;
  --line: #dde3ea;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --danger: #b42318;
  --warning: #a15c07;
  --success: #0f7a3b;
  --info: #2563eb;
  --shadow: 0 8px 24px #1118270f;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

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

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

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  z-index: 20;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #f6f7f9eb;
  position: sticky;
  top: 0;
}

.topbar-inner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
}

.topbar-actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

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

.brand h1 {
  letter-spacing: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.brand p {
  color: var(--muted);
  margin: 2px 0 0;
  font-size: 13px;
}

.dashboard {
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 22px 24px 44px;
  display: grid;
}

.column {
  align-content: start;
  gap: 18px;
  display: grid;
}

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

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

.panel-title {
  align-items: center;
  gap: 9px;
  min-width: 0;
  display: flex;
}

.panel-title h2 {
  letter-spacing: 0;
  margin: 0;
  font-size: 15px;
}

.panel-title svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: none;
}

.panel-body {
  padding: 16px 18px 18px;
}

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

.metric {
  border: 1px solid var(--line);
  background: var(--panel-subtle);
  border-radius: 8px;
  min-width: 0;
  padding: 11px 12px;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  display: block;
}

.metric strong {
  overflow-wrap: anywhere;
  margin-top: 4px;
  font-size: 14px;
  display: block;
}

.badge {
  border: 1px solid var(--line);
  min-height: 24px;
  color: var(--muted);
  white-space: nowrap;
  background: #f7f8fa;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 650;
  display: inline-flex;
}

.badge.success {
  color: var(--success);
  background: #ecfdf3;
  border-color: #b7e4c7;
}

.badge.warning {
  color: var(--warning);
  background: #fff7ed;
  border-color: #fed7aa;
}

.badge.danger {
  color: var(--danger);
  background: #fff1f2;
  border-color: #fecaca;
}

.badge.info {
  color: var(--info);
  background: #eff6ff;
  border-color: #bfdbfe;
}

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

.icon-button, .text-button {
  border: 1px solid var(--line);
  min-height: 38px;
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-weight: 700;
  display: inline-flex;
}

.icon-button {
  width: 38px;
  padding: 0;
}

.primary-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.primary-button:hover {
  background: var(--accent-strong);
}

.danger-button {
  color: var(--danger);
  border-color: #fecaca;
}

.text-button:disabled, .icon-button:disabled {
  cursor: not-allowed;
  opacity: .52;
}

.field-row {
  grid-template-columns: 1fr auto;
  gap: 10px;
  display: grid;
}

.field-stack {
  gap: 10px;
  display: grid;
}

.input {
  border: 1px solid var(--line);
  width: 100%;
  min-height: 38px;
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}

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

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

th, td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  padding: 9px 8px;
}

th {
  color: var(--muted);
  background: #fafbfc;
  font-weight: 750;
}

td {
  color: #263241;
}

.mono {
  font-family: SFMono-Regular, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}

.scroll-list {
  gap: 8px;
  max-height: 310px;
  display: grid;
  overflow: auto;
}

.log-item {
  border: 1px solid var(--line);
  background: var(--panel-subtle);
  border-radius: 8px;
  padding: 10px;
}

.log-item p {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 12px;
}

.warning-list {
  gap: 8px;
  margin-top: 14px;
  display: grid;
}

.warning-item {
  color: var(--warning);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
}

.transcript-box {
  border: 1px solid var(--line);
  background: #fbfcfd;
  border-radius: 8px;
  min-height: 130px;
  max-height: 260px;
  padding: 10px;
  overflow: auto;
}

.message-line {
  color: #263241;
  margin: 0 0 8px;
}

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

.meter {
  background: #edf1f5;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.meter > span {
  background: var(--accent);
  height: 100%;
  display: block;
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 18px;
}

.source-list {
  gap: 10px;
  margin-top: 12px;
  display: grid;
}

.source-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

.source-item strong {
  margin-bottom: 5px;
  display: block;
}

.source-item p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.login-shell {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.login-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  width: min(100%, 390px);
  box-shadow: var(--shadow);
  border-radius: 8px;
  gap: 14px;
  padding: 28px;
  display: grid;
}

.login-mark {
  width: 44px;
  height: 44px;
  color: var(--accent);
  background: #e4f4f1;
  border-radius: 8px;
  place-items: center;
  display: grid;
}

.login-mark svg {
  width: 21px;
  height: 21px;
}

.login-panel h1 {
  letter-spacing: 0;
  margin: 0;
  font-size: 22px;
}

.login-panel p {
  color: var(--muted);
  margin: -8px 0 4px;
  font-size: 13px;
}

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

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

@media (max-width: 680px) {
  .topbar-inner, .dashboard {
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar-inner, .panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    justify-content: space-between;
    width: 100%;
  }

  .metric-grid, .volume-grid, .field-row {
    grid-template-columns: 1fr;
  }
}

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