/* src/styles.scss */
:root {
  --bg-0: #030711;
  --bg-1: #0a0f1e;
  --bg-2: #0f1629;
  --bg-3: #151d38;
  --bg-card: rgba(10, 15, 35, 0.6);
  --bg-card-solid: #0a1025;
  --glass: rgba(255,255,255,0.03);
  --glass-hover: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.08);
  --border-0: rgba(255,255,255,0.04);
  --border-1: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --border-glow: rgba(99,102,241,0.25);
  --t1: #eef2ff;
  --t2: #94a3c8;
  --t3: #5b6580;
  --t4: #3a4058;
  --indigo: #6366f1;
  --indigo-light: #a5b4fc;
  --indigo-soft: rgba(99,102,241,0.1);
  --indigo-glow: rgba(99,102,241,0.15);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34,211,238,0.1);
  --emerald: #34d399;
  --emerald-soft: rgba(52,211,153,0.1);
  --amber: #fbbf24;
  --amber-soft: rgba(251,191,36,0.1);
  --rose: #fb7185;
  --rose-soft: rgba(251,113,133,0.1);
  --violet: #a78bfa;
  --violet-soft: rgba(167,139,250,0.1);
  --font:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 9999px;
  --mirror-fade:
    linear-gradient(
      to bottom,
      rgba(3,7,17,0) 0%,
      rgba(3,7,17,0.3) 20%,
      rgba(3,7,17,0.85) 60%,
      rgba(3,7,17,1) 100%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: #fff;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-2);
}
a {
  color: var(--indigo-light);
  text-decoration: none;
  transition: color 200ms;
}
a:hover {
  color: var(--indigo);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 200ms;
  font-family: var(--font);
  line-height: 1;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      #6366f1,
      #818cf8);
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--glass);
  color: var(--t1);
  border: 1px solid var(--border-1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  border-color: var(--border-2);
  background: var(--glass-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--t3);
  border: 1px solid transparent;
}
.btn-ghost:hover {
  background: var(--glass-hover);
  color: var(--t1);
  border-color: var(--border-0);
}
.btn-danger {
  background:
    linear-gradient(
      135deg,
      #e11d48,
      #fb7185);
  color: #fff;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.2);
}
.btn-danger:hover {
  box-shadow: 0 0 32px rgba(225, 29, 72, 0.35);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 6px 12px;
  font-size: 11px;
}
.btn-lg {
  padding: 10px 20px;
  font-size: 13px;
}
.btn-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  justify-content: center;
}
.glass-card {
  background: rgba(10, 15, 35, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-0);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.glass-card:hover {
  border-color: var(--border-1);
}
.glass-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-0);
  position: relative;
  z-index: 2;
}
.glass-card-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.glass-card-body {
  padding: 20px;
  position: relative;
  z-index: 2;
}
.card-mirror {
  position: absolute;
  top: 100%;
  left: 3px;
  right: 3px;
  height: 50px;
  overflow: hidden;
  pointer-events: none;
  transform: scaleY(-1);
  opacity: 0.12;
  filter: blur(2px);
  mask-image:
    linear-gradient(
      to top,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 100%);
  -webkit-mask-image:
    linear-gradient(
      to top,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 100%);
}
.card-mirror-inner {
  height: 50px;
  background: var(--bg-card);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card-wrapper {
  position: relative;
  perspective: 800px;
}
.stat-card {
  background: rgba(10, 15, 35, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-0);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%,
      rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}
.stat-card:hover {
  border-color: var(--border-1);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 300ms;
}
.stat-card:hover::after {
  opacity: 1;
}
.stat-card-wrapper:nth-child(1) .stat-card::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--indigo),
      transparent);
}
.stat-card-wrapper:nth-child(2) .stat-card::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--cyan),
      transparent);
}
.stat-card-wrapper:nth-child(3) .stat-card::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--emerald),
      transparent);
}
.stat-card-wrapper:nth-child(4) .stat-card::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--amber),
      transparent);
}
.stat-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.12;
  transition: opacity 300ms;
  pointer-events: none;
}
.stat-card:hover .stat-glow {
  opacity: 0.22;
}
.stat-mirror {
  position: absolute;
  top: 100%;
  left: 2px;
  right: 2px;
  height: 60px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
  pointer-events: none;
  transform: scaleY(-1);
  opacity: 0.18;
  filter: blur(1px);
  mask-image:
    linear-gradient(
      to top,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 100%);
  -webkit-mask-image:
    linear-gradient(
      to top,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 100%);
}
.stat-mirror-inner {
  padding: 20px 22px;
  background: var(--bg-card);
}
.stat-mirror-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.stat-mirror-lbl {
  font-size: 11px;
  color: var(--t3);
  margin-top: 4px;
}
.stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.stat-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.stat-trend {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--r-full);
}
.trend-up {
  color: var(--emerald);
  background: var(--emerald-soft);
}
.trend-down {
  color: var(--rose);
  background: var(--rose-soft);
}
.stat-val {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.stat-lbl {
  font-size: 11px;
  color: var(--t3);
  margin-top: 5px;
  position: relative;
  z-index: 1;
}
.stat-spark {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.spark-bar {
  flex: 1;
  border-radius: 3px;
  transition: height 400ms ease, opacity 400ms ease;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 500;
  border: 1px solid transparent;
}
.badge-emerald,
.badge-em {
  background: var(--emerald-soft);
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.15);
}
.badge-amber,
.badge-am {
  background: var(--amber-soft);
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.15);
}
.badge-rose,
.badge-ro {
  background: var(--rose-soft);
  color: var(--rose);
  border-color: rgba(251, 113, 133, 0.15);
}
.badge-indigo,
.badge-in {
  background: var(--indigo-soft);
  color: var(--indigo-light);
  border-color: rgba(99, 102, 241, 0.15);
}
.badge-cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.15);
}
.badge-violet {
  background: var(--violet-soft);
  color: var(--violet);
  border-color: rgba(167, 139, 250, 0.15);
}
.v3-table {
  width: 100%;
  border-collapse: collapse;
}
.v3-table th {
  text-align: left;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--t4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-0);
}
.v3-table td {
  padding: 10px 20px;
  font-size: 12px;
  border-bottom: 1px solid var(--border-0);
}
.v3-table tr:last-child td {
  border-bottom: none;
}
.v3-table tr:hover td {
  background: var(--glass);
}
.v3-input {
  width: 100%;
  padding: 9px 12px;
  background: var(--bg-0);
  border: 1px solid var(--border-0);
  border-radius: var(--r-md);
  color: var(--t1);
  font-size: 12px;
  font-family: var(--font);
  outline: none;
  transition: all 200ms;
}
.v3-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.v3-input::placeholder {
  color: var(--t4);
}
.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.page-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background:
    linear-gradient(
      135deg,
      #eef2ff 0%,
      #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-sub {
  font-size: 13px;
  color: var(--t3);
  margin-top: 4px;
  -webkit-text-fill-color: var(--t3);
}
.header-btns {
  display: flex;
  gap: 8px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.avatar::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.avatar-sm {
  width: 26px;
  height: 26px;
  font-size: 9px;
}
.avatar-lg {
  width: 40px;
  height: 40px;
  font-size: 13px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.online {
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}
.status-dot.away {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}
.status-dot.busy {
  background: var(--rose);
  box-shadow: 0 0 8px rgba(251, 113, 133, 0.5);
}
.status-dot.offline {
  background: var(--t4);
}
.v3-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  border-top: 1px solid var(--border-0);
}
.v3-pagination .page-info {
  font-size: 11px;
  color: var(--t3);
  margin-right: auto;
}
.v3-pagination .page-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--t3);
  cursor: pointer;
  transition: all 200ms;
  background: none;
  border: 1px solid transparent;
  font-family: var(--font);
}
.v3-pagination .page-btn:hover {
  background: var(--glass-hover);
  color: var(--t1);
}
.v3-pagination .page-btn.active {
  background: var(--indigo-soft);
  color: var(--indigo-light);
  border-color: rgba(99, 102, 241, 0.15);
}
.v3-pagination .page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--t3);
}
.empty-state .empty-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-xl);
  background: var(--glass);
  border: 1px solid var(--border-0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--t4);
}
.empty-state .empty-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 4px;
}
.empty-state .empty-text {
  font-size: 12px;
  color: var(--t3);
  max-width: 300px;
  margin: 0 auto;
}
@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(60px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 50px) scale(0.9);
  }
  75% {
    transform: translate(-50px, -30px) scale(1.05);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 4px rgba(52, 211, 153, 0.3);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes borderGlow {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes ringPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(251, 191, 36, 0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.stat-card-wrapper:nth-child(1) {
  animation: fadeInUp 0.5s ease both;
  animation-delay: 0s;
}
.stat-card-wrapper:nth-child(2) {
  animation: fadeInUp 0.5s ease both;
  animation-delay: 0.08s;
}
.stat-card-wrapper:nth-child(3) {
  animation: fadeInUp 0.5s ease both;
  animation-delay: 0.16s;
}
.stat-card-wrapper:nth-child(4) {
  animation: fadeInUp 0.5s ease both;
  animation-delay: 0.24s;
}
.text-muted {
  color: var(--t3);
}
.text-dim {
  color: var(--t4);
}
.font-mono {
  font-family:
    "SF Mono",
    "Fira Code",
    "JetBrains Mono",
    monospace;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
