/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-raised: #141414;
  --bg-hover: #1a1a1a;
  --bg-active: #222;
  --border: #262626;
  --border-light: #333;
  --text: #e5e5e5;
  --text-secondary: #a3a3a3;
  --text-muted: #666;
  --blue: #3b82f6;
  --green: #22c55e;
  --yellow: #eab308;
  --orange: #f97316;
  --red: #ef4444;
  --purple: #8b5cf6;
  --teal: #14b8a6;
  --pink: #ec4899;
  --sidebar-width: 240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

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

.main-content {
  margin-left: var(--sidebar-width);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.page-content {
  flex: 1;
  padding: 24px;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-raised);
  border-right: 1px solid var(--border);
  z-index: 100;
  flex-direction: column;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}

.sidebar-header {
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 10px;
  padding: 16px 16px 12px;
  display: flex;
}

.sidebar-logo {
  font-size: 24px;
}

.sidebar-title {
  font-size: 15px;
  font-weight: 600;
}

.sidebar-nav {
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  display: flex;
}

.sidebar-link {
  color: var(--text-secondary);
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.sidebar-link:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.sidebar-link.active {
  background: var(--bg-active);
  color: var(--text);
  font-weight: 500;
}

.sidebar-section {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.sidebar-section-header {
  text-transform: uppercase;
  letter-spacing: .05em;
  width: 100%;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  padding: 12px 12px 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.sidebar-section-header:hover {
  color: var(--text);
}

.sidebar-section-chevron {
  flex-shrink: 0;
  transition: transform .15s;
}

.page-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.page-title {
  font-size: 22px;
  font-weight: 600;
}

.page-subtitle {
  color: var(--text-secondary);
  margin-top: 2px;
  font-size: 13px;
}

.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

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

.card-title {
  font-size: 14px;
  font-weight: 500;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

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

.stat-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
}

.stat-value {
  margin-top: 4px;
  font-size: 28px;
  font-weight: 600;
}

.stat-detail {
  color: var(--text-secondary);
  margin-top: 4px;
  font-size: 12px;
}

.btn {
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  transition: all .15s;
  display: inline-flex;
}

.btn:hover {
  background: var(--bg-hover);
  border-color: var(--border-light);
}

.btn-primary {
  background: var(--purple);
  border-color: var(--purple);
}

.btn-primary:hover {
  opacity: .9;
}

.btn-sm {
  padding: 4px 10px;
  font-size: 12px;
}

.form-input {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  border-radius: 6px;
  outline: none;
  padding: 8px 12px;
  font-size: 13px;
}

.form-input:focus {
  border-color: var(--blue);
}

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

.text-xs {
  font-size: 11px;
}

.text-sm {
  font-size: 12px;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: 1s linear infinite spin;
}

.sidebar-toggle {
  z-index: 120;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  box-shadow: 0 2px 8px #0003;
}

.sidebar-backdrop {
  z-index: 99;
  background: #00000080;
  display: none;
  position: fixed;
  inset: 0;
}

@media (max-width: 768px) {
  .sidebar-toggle {
    display: inline-flex;
  }

  .sidebar {
    transition: transform .2s;
    transform: translateX(-100%);
    box-shadow: 4px 0 16px #00000059;
  }

  .app-layout[data-sidebar-open="true"] .sidebar {
    transform: translateX(0);
  }

  .app-layout[data-sidebar-open="true"] .sidebar-backdrop {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding-top: 52px;
  }

  .page-content {
    padding: 16px;
  }

  .stats-grid, .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-title {
    font-size: 18px;
  }

  .card {
    padding: 12px;
  }

  table {
    min-width: 520px;
  }
}

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