/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-color: #050505;
  --panel-bg: #141414b3;
  --accent-primary: #8b5cf6;
  --accent-secondary: #06b6d4;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-border: #ffffff1a;
  --glass-glow: 0 8px 32px 0 #000c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  background-image: radial-gradient(at 0 0, #8b5cf626 0, #0000 50%), radial-gradient(at 100% 100%, #06b6d41a 0, #0000 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

.dashboard-container {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  background: var(--panel-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-right: 1px solid var(--glass-border);
  z-index: 100;
  flex-direction: column;
  gap: 2rem;
  width: 260px;
  padding: 2rem 1.5rem;
  display: flex;
}

.logo {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
}

.nav-links {
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  display: flex;
}

.nav-item {
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

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

.nav-item.active {
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 12px #0003;
}

.main-content {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem;
}

.header {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  display: flex;
}

.header h1 {
  margin-bottom: .5rem;
  font-size: 2rem;
}

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

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: grid;
}

.stat-card {
  background: var(--panel-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-card:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(45deg, #0000, #ffffff08);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.stat-value {
  margin: .5rem 0;
  font-size: 2.5rem;
  font-weight: 700;
}

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

.section-title {
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  display: flex;
}

.item-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.list-item {
  background: var(--panel-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  transition: transform .2s;
  display: flex;
}

.list-item:hover {
  border-color: #fff3;
  transform: translateY(-2px);
}

.item-info h3 {
  font-size: 1.1rem;
}

.item-info p {
  color: var(--text-muted);
  font-size: .85rem;
}

.status-badge {
  color: #22c55e;
  background: #22c55e1a;
  border: 1px solid #22c55e33;
  border-radius: 20px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: filter .3s;
}

.btn-primary:hover {
  filter: brightness(1.2);
}

.btn-icon {
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  background: #ffffff0d;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  background: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-content {
  background: var(--panel-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  animation: .3s cubic-bezier(.16, 1, .3, 1) modalIn;
  box-shadow: 0 20px 50px #00000080;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-input {
  border: 1px solid var(--glass-border);
  color: #fff;
  background: #ffffff0d;
  border-radius: 12px;
  outline: none;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color .3s;
}

.modal-input:focus {
  border-color: var(--accent-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.animate-fade {
  animation: .5s forwards fadeIn;
}

.login-wrapper {
  background: radial-gradient(circle, #1e1b4b 0%, #050505 100%);
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-wrapper:before {
  content: "";
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  width: 200%;
  height: 200%;
  animation: 8s steps(10, end) infinite grain;
  position: absolute;
}

@keyframes grain {
  0%, 100% {
    transform: translate(0);
  }

  10% {
    transform: translate(-5%, -10%);
  }

  30% {
    transform: translate(3%, -15%);
  }

  50% {
    transform: translate(12%, 9%);
  }

  70% {
    transform: translate(9%, 4%);
  }

  90% {
    transform: translate(-1%, 7%);
  }
}

.login-card {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  z-index: 10;
  text-align: center;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 32px;
  width: 100%;
  max-width: 420px;
  padding: 3rem;
  box-shadow: 0 40px 100px #000c;
}

.login-logo {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to right, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 900;
}

.wizard-container {
  flex-direction: column;
  min-height: 480px;
  display: flex;
  max-width: 550px !important;
}

.wizard-progress {
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
  display: flex;
}

.progress-dot {
  background: #ffffff1a;
  border-radius: 2px;
  width: 30px;
  height: 4px;
  transition: all .3s;
}

.progress-dot.active {
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
}

.wizard-title {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-badge {
  background: var(--accent-primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: .75rem;
  font-weight: bold;
  display: inline-flex;
}

.input-label {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-size: .75rem;
  display: block;
}

.wizard-footer {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
}

.module-chip {
  border: 1px solid var(--glass-border);
  cursor: pointer;
  text-align: center;
  background: #ffffff08;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  transition: all .2s;
  display: flex;
}

.module-chip:hover {
  background: #ffffff0f;
  transform: translateY(-2px);
}

.module-chip.active {
  border-color: var(--accent-primary);
  background: #8b5cf61a;
  box-shadow: 0 0 15px #8b5cf61a;
}

.chip-icon {
  font-size: 1.5rem;
}

.chip-label {
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-weight: 500;
  transition: all .3s;
}

.btn-secondary:hover {
  color: #fff;
  background: #ffffff0d;
}

.card-glass {
  background: var(--panel-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all .3s;
}

.card-glass:hover {
  border-color: #fff3;
  transform: translateY(-4px);
}

.health-dot {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.health-dot.online {
  background: #22c55e;
  animation: 2s infinite pulse-led;
  box-shadow: 0 0 12px #22c55e;
}

.health-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 12px #ef4444;
}

@keyframes pulse-led {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.module-chip.active-mod {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, #8b5cf633, #06b6d41a);
  box-shadow: 0 4px 15px #8b5cf626;
}

table {
  border-spacing: 0;
  width: 100%;
}

th {
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  background: #ffffff08;
  font-size: .75rem;
}

td {
  border-bottom: 1px solid var(--glass-border);
  font-size: .9rem;
}

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

tr:hover td {
  background: #ffffff05;
}

input:read-only {
  color: var(--text-muted);
  cursor: not-allowed;
  background: #ffffff05 !important;
}

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