@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-primary: #09090b;
  --bg-secondary: #0f0f11;
  --bg-tertiary: #18181b;
  --bg-elevated: #27272a;
  --bg-hover: #27272a;
  --bg-active: #6366f11f;
  --border-default: #27272a;
  --border-muted: #18181b;
  --border-accent: #6366f1;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-accent: #818cf8;
  --text-on-accent: #fff;
  --accent-primary: #6366f1;
  --accent-secondary: #4f46e5;
  --accent-blue: #0ea5e9;
  --accent-gradient: linear-gradient(135deg, #6366f1, #0ea5e9);
  --accent-glow: 0 0 20px #6366f14d;
  --status-success: #22c55e;
  --status-warning: #eab308;
  --status-error: #ef4444;
  --status-info: #3b82f6;
  --severity-critical: #ef4444;
  --severity-high: #f97316;
  --severity-medium: #eab308;
  --severity-low: #22c55e;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;
  --sidebar-width: 250px;
  --sidebar-collapsed: 68px;
  --topbar-height: 60px;
  --shadow-sm: 0 1px 2px #0006;
  --shadow-md: 0 4px 12px #00000080;
  --shadow-lg: 0 8px 24px #0009;
  --transition-fast: .15s ease;
  --transition-normal: .25s ease;
  --transition-slow: .35s ease;
}

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

html {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
}

a {
  color: var(--text-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--transition-fast);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px #8a5cf626;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 0 30px #8a5cf666;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--accent-primary);
}

.btn-danger {
  color: var(--status-error);
  background: #f8514926;
  border: 1px solid #f851494d;
}

.btn-danger:hover {
  background: #f8514940;
}

.btn-sm {
  padding: var(--space-xs) var(--space-sm);
  font-size: 12px;
}

.badge {
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.badge-purple {
  color: var(--accent-primary);
  background: #8a5cf633;
}

.badge-success {
  color: var(--status-success);
  background: #3fb95033;
}

.badge-error {
  color: var(--status-error);
  background: #f8514933;
}

.badge-warning {
  color: var(--status-warning);
  background: #d2992233;
}

.card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-default);
  font-size: 11px;
  font-weight: 600;
}

td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-muted);
}

tr:hover td {
  background: var(--bg-hover);
}

.form-group {
  gap: var(--space-sm);
  flex-direction: column;
  display: flex;
}

.form-group label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
}

.page-header {
  margin-bottom: var(--space-xl);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.page-header h1 {
  font-size: 20px;
  font-weight: 600;
}

.empty-state {
  padding: var(--space-3xl);
  color: var(--text-muted);
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  flex-direction: column;
  display: flex;
}

.empty-state svg {
  opacity: .4;
}

.modal-backdrop {
  z-index: 1000;
  animation: fadeIn var(--transition-fast);
  background: #000000b3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 100%;
  min-width: 400px;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  animation: slideUp var(--transition-normal);
}

.modal-header {
  margin-bottom: var(--space-xl);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.modal-header h2 {
  font-size: 16px;
  font-weight: 600;
}

.modal-actions {
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  justify-content: flex-end;
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  border: 2px solid var(--border-default);
  border-top-color: var(--accent-primary);
  border-radius: var(--radius-full);
  width: 20px;
  height: 20px;
  animation: .6s linear infinite spin;
}

/* [project]/src/components/layout/Sidebar.module.css [app-client] (css) */
.Sidebar-module__XRNO5a__sidebar {
  width: var(--sidebar-width);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-default);
  height: 100vh;
  transition: width var(--transition-normal);
  z-index: 100;
  flex-direction: column;
  flex-shrink: 0;
  display: flex;
  overflow: hidden;
}

.Sidebar-module__XRNO5a__sidebar.Sidebar-module__XRNO5a__collapsed {
  width: var(--sidebar-collapsed);
}

.Sidebar-module__XRNO5a__logo {
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg);
  border-bottom: 1px solid var(--border-default);
  min-height: var(--topbar-height);
  display: flex;
}

.Sidebar-module__XRNO5a__logoImg {
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.Sidebar-module__XRNO5a__logoText {
  background: var(--accent-gradient);
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 18px;
  font-weight: 700;
}

.Sidebar-module__XRNO5a__search {
  padding: var(--space-md) var(--space-lg);
  position: relative;
}

.Sidebar-module__XRNO5a__searchIcon {
  opacity: .5;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.Sidebar-module__XRNO5a__searchInput {
  width: 100%;
  padding: var(--space-sm) var(--space-sm) var(--space-sm) 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 12px;
}

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

.Sidebar-module__XRNO5a__nav {
  padding: var(--space-sm) var(--space-sm);
  flex: 1;
  overflow-y: auto;
}

.Sidebar-module__XRNO5a__navItem {
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

.Sidebar-module__XRNO5a__navItem:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  text-decoration: none;
}

.Sidebar-module__XRNO5a__navItem.Sidebar-module__XRNO5a__active {
  background: var(--bg-active);
  color: var(--accent-primary);
  border-left: 3px solid var(--accent-primary);
  padding-left: calc(var(--space-md) - 3px);
}

.Sidebar-module__XRNO5a__navIcon {
  text-align: center;
  flex-shrink: 0;
  width: 24px;
  font-size: 16px;
}

.Sidebar-module__XRNO5a__navLabel {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.Sidebar-module__XRNO5a__adminSection {
  border-top: 1px solid var(--border-default);
  padding: var(--space-sm);
}

.Sidebar-module__XRNO5a__adminHeader {
  padding: var(--space-sm) var(--space-md);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
}

.Sidebar-module__XRNO5a__collapseBtn {
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-default);
  color: var(--text-muted);
  width: 100%;
  transition: color var(--transition-fast);
  font-size: 12px;
  display: flex;
}

.Sidebar-module__XRNO5a__collapseBtn:hover {
  color: var(--text-primary);
}

.Sidebar-module__XRNO5a__collapseIcon {
  font-size: 10px;
}

/* [project]/src/components/layout/TopBar.module.css [app-client] (css) */
.TopBar-module__LYwH0W__topbar {
  height: var(--topbar-height);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-default);
  padding: 0 var(--space-xl);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.TopBar-module__LYwH0W__left {
  align-items: center;
  gap: var(--space-md);
  display: flex;
}

.TopBar-module__LYwH0W__right {
  align-items: center;
  gap: var(--space-lg);
  display: flex;
}

.TopBar-module__LYwH0W__iconBtn {
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  font-size: 18px;
  position: relative;
}

.TopBar-module__LYwH0W__iconBtn:hover, .TopBar-module__LYwH0W__iconBtn.TopBar-module__LYwH0W__active {
  background: var(--bg-hover);
}

.TopBar-module__LYwH0W__bellIcon {
  display: block;
}

.TopBar-module__LYwH0W__badge {
  background: var(--accent-primary);
  color: #fff;
  border-radius: var(--radius-full);
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 2px;
  right: 2px;
}

.TopBar-module__LYwH0W__statusIndicator {
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 12px;
  display: flex;
}

.TopBar-module__LYwH0W__statusDot {
  border-radius: var(--radius-full);
  background: var(--status-success);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 6px #3fb95080;
}

.TopBar-module__LYwH0W__statusText {
  font-weight: 500;
}

.TopBar-module__LYwH0W__userMenu {
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  display: flex;
}

.TopBar-module__LYwH0W__userMenu:hover {
  background: var(--bg-hover);
}

.TopBar-module__LYwH0W__avatar {
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.TopBar-module__LYwH0W__username {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
}

.TopBar-module__LYwH0W__logoutBtn {
  padding: var(--space-xs);
  color: var(--text-muted);
  transition: color var(--transition-fast);
  font-size: 14px;
}

.TopBar-module__LYwH0W__logoutBtn:hover {
  color: var(--status-error);
}

/* [project]/src/components/layout/NotificationsPanel.module.css [app-client] (css) */
.NotificationsPanel-module__KX5arW__panel {
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-default);
  width: 340px;
  height: 100%;
  animation: NotificationsPanel-module__KX5arW__slideIn var(--transition-normal);
  flex-direction: column;
  flex-shrink: 0;
  display: flex;
}

@keyframes NotificationsPanel-module__KX5arW__slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.NotificationsPanel-module__KX5arW__header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-default);
  min-height: var(--topbar-height);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.NotificationsPanel-module__KX5arW__header h3 {
  font-size: 14px;
  font-weight: 600;
}

.NotificationsPanel-module__KX5arW__closeBtn {
  color: var(--text-muted);
  padding: var(--space-xs);
  transition: color var(--transition-fast);
  font-size: 14px;
}

.NotificationsPanel-module__KX5arW__closeBtn:hover {
  color: var(--text-primary);
}

.NotificationsPanel-module__KX5arW__section {
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--border-muted);
}

.NotificationsPanel-module__KX5arW__sectionTitle {
  margin-bottom: var(--space-md);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.NotificationsPanel-module__KX5arW__sectionLabel {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  font-size: 10px;
  font-weight: 700;
}

.NotificationsPanel-module__KX5arW__sectionCount {
  color: var(--text-muted);
  font-size: 11px;
}

.NotificationsPanel-module__KX5arW__emptySection {
  padding: var(--space-lg);
  text-align: center;
}

.NotificationsPanel-module__KX5arW__emptyText {
  color: var(--text-muted);
  font-size: 12px;
}

.NotificationsPanel-module__KX5arW__notificationItem {
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  display: flex;
}

.NotificationsPanel-module__KX5arW__notificationItem:hover {
  background: var(--bg-hover);
}

.NotificationsPanel-module__KX5arW__notifIcon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.NotificationsPanel-module__KX5arW__notifContent {
  flex: 1;
  min-width: 0;
}

.NotificationsPanel-module__KX5arW__notifTitle {
  color: var(--text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
}

.NotificationsPanel-module__KX5arW__notifMeta {
  color: var(--text-muted);
  margin-top: 2px;
  font-size: 11px;
}

.NotificationsPanel-module__KX5arW__footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-default);
  justify-content: space-between;
  margin-top: auto;
  display: flex;
}

.NotificationsPanel-module__KX5arW__footerLink {
  color: var(--accent-primary);
  transition: color var(--transition-fast);
  font-size: 12px;
}

.NotificationsPanel-module__KX5arW__footerLink:hover {
  color: var(--accent-blue);
  text-decoration: none;
}

/* [project]/src/components/layout/AppShell.module.css [app-client] (css) */
.AppShell-module__cB5iMW__shell {
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.AppShell-module__cB5iMW__main {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.AppShell-module__cB5iMW__contentWrapper {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.AppShell-module__cB5iMW__content {
  padding: var(--space-xl);
  flex: 1;
  min-width: 0;
  overflow-y: auto;
}

.AppShell-module__cB5iMW__loading {
  background: var(--bg-primary);
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

/*# sourceMappingURL=src_0vmc-gl._.css.map*/