/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #060a10;
  --panel: #0d1420;
  --hover-bg: #16202f;
  --line: #1f2c3d;
  --text: #eef2f6;
  --text-muted: #93a1b3;
  --primary: #4fbf6a;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

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

.sidebar {
  background: var(--panel);
  border-right: 1px solid var(--line);
  flex-shrink: 0;
  width: 220px;
  padding: 20px 14px;
}

.brand {
  align-items: center;
  gap: 10px;
  padding: 4px 10px 20px;
  font-weight: 600;
  display: flex;
}

.brand-mark {
  background: var(--primary);
  border-radius: 8px;
  width: 28px;
  height: 28px;
}

.nav-item {
  color: var(--text-muted);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.nav-item.active, .nav-item:hover {
  background: var(--hover-bg);
  color: var(--text);
}

.main {
  flex: 1;
}

.topbar {
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
}

.content {
  padding: 28px 32px;
}

.content-full {
  padding: 48px 32px;
}

.card {
  background: var(--card-bg, var(--panel));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}

.card-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.mb-16 {
  margin-bottom: 16px;
}

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

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

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

.row-list {
  flex-direction: column;
  display: flex;
}

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

.row-item:last-child {
  border-bottom: none;
}

.row-title {
  font-size: 13px;
  font-weight: 600;
}

.pill {
  border-radius: 999px;
  align-items: center;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.pill.neutral {
  background: var(--hover-bg);
  color: var(--text-muted);
}

button {
  background: var(--primary);
  color: #04140c;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
}

button.secondary {
  background: var(--hover-bg);
  color: var(--text);
}

input, textarea, select {
  background: var(--hover-bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
}

iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  height: calc(100vh - 120px);
}

.kpi-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  display: grid;
}

.kpi-card {
  background: var(--card-bg, var(--panel));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}

.kpi-label {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
}

.kpi-value {
  font-size: 22px;
  font-weight: 800;
}

.pill.success {
  color: #4fbf6a;
  background: #4fbf6a26;
}

.pill.error {
  color: #e04040;
  background: #e0404026;
}

.tabs-modulo {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 18px;
  display: flex;
}

.tab-modulo {
  color: var(--text-muted);
  background: none;
  border-radius: 8px 8px 0 0;
  padding: 9px 14px;
  font-size: 13px;
}

.tab-modulo.active {
  background: var(--hover-bg);
  color: var(--text);
}

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

table.data-table th {
  text-align: left;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  font-size: 11px;
}

table.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
}

table.data-table tr:last-child td {
  border-bottom: none;
}

.form-inline {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

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