/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
:root {
  --bg-color: #0d1117;
  --card-bg: #161b22;
  --text-color: #c9d1d9;
  --accent-color: #58a6ff;
  --secondary-text: #8b949e;
  --border-color: #30363d;
  --success: #238636;
  --danger: #da3633;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1,
h2,
h3 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.brand {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
}

.system-summary {
  display: flex;
  gap: 1.5rem;
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.summary-item {
  display: flex;
  flex-direction: column;
  min-width: 100px;
}

.capacity-status.healthy {
  border-left: 3px solid #3fb950;
  padding-left: 0.8rem;
  text-align: left;
}

.capacity-status.warning {
  border-left: 3px solid #d29922;
  padding-left: 0.8rem;
  text-align: left;
}

.capacity-status.critical {
  border-left: 3px solid #f85149;
  padding-left: 0.8rem;
  text-align: left;
}

.summary-item .label {
  font-size: 0.7rem;
  color: var(--secondary-text);
  letter-spacing: 0.05rem;
}

.summary-item .value {
  font-size: 0.9rem;
  color: var(--text-color);
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.card-title {
  color: var(--secondary-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
}

.card-value {
  font-size: 2rem;
  font-weight: 600;
}

.card-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.docker-summary {
  display: flex;
  gap: 0.8rem;
}

.summary-chip {
  padding: 0.2rem 0.6rem;
  background: var(--border-color);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--secondary-text);
  font-weight: 500;
}

.summary-chip.running {
  color: #3fb950;
  background: rgba(35, 134, 54, 0.1);
}

.summary-chip.exited {
  color: #f85149;
  background: rgba(218, 54, 51, 0.1);
}

.search-box {
  flex: 1;
  max-width: 300px;
}

.search-input {
  width: 100%;
  background: #0d1117;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.docker-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.docker-table th,
.docker-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.docker-table th {
  color: var(--secondary-text);
  font-weight: 400;
  font-size: 0.85rem;
}

.status-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-running {
  background: rgba(35, 134, 54, 0.2);
  color: #3fb950;
  border: 1px solid rgba(35, 134, 54, 0.4);
}

.status-exited {
  background: rgba(218, 54, 51, 0.2);
  color: #f85149;
  border: 1px solid rgba(218, 54, 51, 0.4);
}

.chart-container {
  height: 200px;
  margin-top: 1rem;
}

.action-btn {
  background: #30363d;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.action-btn:hover {
  background: #3fb950;
  border-color: #3fb950;
  color: white;
}

.stop-btn:hover {
  background: #f85149;
  border-color: #f85149;
}

.restart-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.pause-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  align-self: center;
}

.pause-btn:hover {
  border-color: var(--accent-color);
}

.pause-btn.paused {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 1rem;
  overflow-y: auto;
  background: #000;
  margin: 1rem;
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
}

.modal-body pre {
  margin: 0;
  color: #3fb950;
  font-size: 0.85rem;
  white-space: pre-wrap;
}

.close-btn {
  background: none;
  border: none;
  color: var(--secondary-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-color);
  color: #0d1117;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  z-index: 2500;
  animation: slideUp 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.bio-link-banner {
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid var(--accent-color);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 0.5s ease-out;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .system-summary {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 1.2rem;
  }

  .card-value {
    font-size: 1.5rem;
  }

  .login-card {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .bio-link-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .summary-item {
    min-width: 45%;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
}

/* =============================================
   LOGIN SCREEN - PREMIUM REDESIGN
   ============================================= */

/* Animated grid background */
.login-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* Animated glowing orbs */
.login-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.login-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(88, 166, 255, 0.12), transparent 70%);
  top: -150px;
  right: -100px;
  animation-duration: 12s;
}

.login-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(111, 66, 193, 0.1), transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-duration: 9s;
  animation-delay: -3s;
}

.login-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(35, 134, 54, 0.08), transparent 70%);
  top: 40%;
  left: 30%;
  animation-duration: 15s;
  animation-delay: -6s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.1);
  }
}

/* Full-page layout */
.login-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 2000;
  background: #0a0e16;
  overflow: hidden;
}

/* Two-column layout */
.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 1;
  min-height: 100dvh;
}

/* ---- LEFT: BRANDING PANEL ---- */
.login-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.login-brand-inner {
  max-width: 320px;
  animation: fadeIn 0.8s ease-out;
}

.login-brand-logo {
  margin-bottom: 1.5rem;
}

.login-brand-name {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #58a6ff, #a5d6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-brand-tagline {
  font-size: 1rem;
  color: var(--secondary-text);
  margin-bottom: 3rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 400;
}

.login-brand-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.login-stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.login-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.login-stat-dot.green {
  background: #3fb950;
  box-shadow: 0 0 8px #3fb950;
}

.login-stat-dot.blue {
  background: #58a6ff;
  box-shadow: 0 0 8px #58a6ff;
  animation-delay: 0.6s;
}

.login-stat-dot.purple {
  background: #a78bfa;
  box-shadow: 0 0 8px #a78bfa;
  animation-delay: 1.2s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.login-brand-footer {
  font-size: 0.75rem;
  color: var(--secondary-text);
  opacity: 0.4;
  letter-spacing: 0.05rem;
}

/* ---- RIGHT: FORM PANEL ---- */
.login-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.login-card {
  background: rgba(22, 27, 34, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 0 0 1px rgba(88, 166, 255, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.6);
  animation: cardEntrance 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

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

/* Mobile-only logo */
.login-mobile-logo {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: -0.02em;
}

.nexpulse-brand small {
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.55;
  letter-spacing: 0.02em;
  color: var(--secondary-text);
}

.login-card-header {
  margin-bottom: 2rem;
}

.login-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.login-desc {
  font-size: 0.9rem;
  color: var(--secondary-text);
}

/* Form elements */
.login-form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.login-label {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  color: var(--secondary-text);
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}

.login-input-wrapper {
  position: relative;
}

.login-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.login-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.login-input:focus {
  border-color: rgba(88, 166, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(88, 166, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.55);
}

.login-input-glow {
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.15), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.login-input:focus+.login-input-glow {
  opacity: 1;
}

/* Primary CTA button */
.login-btn-primary {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #58a6ff, #1f6feb);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  letter-spacing: 0.04rem;
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.35);
}

.login-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88, 166, 255, 0.5);
  filter: brightness(1.1);
}

.login-btn-primary:active {
  transform: translateY(0);
}

/* Biometric button */
.login-btn-biometric {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  letter-spacing: 0.04rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.login-btn-biometric:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* Biometric icon wrap */
.login-bio-icon-wrap {
  width: 90px;
  height: 90px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.login-bio-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.3);
  animation: bioPulse 2s ease-out infinite;
}

@keyframes bioPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Error message */
.login-error-msg {
  margin-top: 1.2rem;
  color: #f85149;
  font-size: 0.83rem;
  background: rgba(248, 81, 73, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(248, 81, 73, 0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: fadeIn 0.3s ease;
}

/* Status message */
.login-status-msg {
  margin-top: 1rem;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

/* Link-style button */
.login-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  margin-top: 1.5rem;
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
  text-align: center;
  font-family: inherit;
  transition: color 0.2s;
  display: block;
}

.login-link-btn:hover {
  color: var(--secondary-text);
}

/* Card footer */
.login-card-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.18);
}

.login-footer-dot {
  opacity: 0.4;
}

/* Legacy classes (keep for backward compat) */
.login-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent-color);
  color: #0d1117;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
  font-family: inherit;
}

.login-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.login-btn.biometric-btn {
  background: linear-gradient(135.2deg, #25d366 0.1%, #128c7e 100%);
  color: white;
  border: none;
}

.login-error {
  margin-top: 1.2rem;
  color: #f85149;
  font-size: 0.85rem;
  background: rgba(248, 81, 73, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(248, 81, 73, 0.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .login-layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .login-branding {
    display: none;
  }

  .login-form-panel {
    padding: 1.5rem;
    justify-content: center;
    width: 100%;
  }

  .login-mobile-logo {
    display: flex;
  }

  .login-card {
    max-width: 440px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .login-title {
    font-size: 1.5rem;
  }
}

/* =============================================
   BIOMETRIC SETUP MODAL
   ============================================= */

.bio-setup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  animation: fadeIn 0.3s ease;
  padding: 1.5rem;
}

.bio-setup-card {
  background: rgba(22, 27, 34, 0.95);
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 28px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(88, 166, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.7);
  animation: cardEntrance 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.bio-setup-icon {
  width: 100px;
  height: 100px;
  background: rgba(88, 166, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.bio-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(88, 166, 255, 0.3);
  animation: bioRingPulse 2.5s ease-out infinite;
}

.bio-ring-2 {
  animation-delay: 1s;
  border-color: rgba(88, 166, 255, 0.15);
}

@keyframes bioRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.bio-setup-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.bio-setup-desc {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bio-setup-desc strong {
  color: var(--text-color);
}

.bio-setup-status {
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.bio-setup-success {
  background: rgba(35, 134, 54, 0.1);
  border: 1px solid rgba(35, 134, 54, 0.3);
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #3fb950;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.4s ease;
}

.bio-setup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bio-btn-primary {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #58a6ff, #1f6feb);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  letter-spacing: 0.04rem;
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.35);
}

.bio-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88, 166, 255, 0.5);
}

.bio-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bio-btn-secondary {
  width: 100%;
  padding: 0.9rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-text);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.bio-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
}

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

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

/* Stack Group Styles */
.stack-header td {
  background: rgba(88, 166, 255, 0.05);
  border-left: 4px solid var(--accent-color);
  padding: 1.2rem 1rem !important;
}

.stack-action-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--secondary-text);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05rem;
}

.stack-action-btn:hover {
  color: white;
  transform: translateY(-1px);
}

.stack-action-btn.start:hover {
  background: var(--success);
  border-color: var(--success);
}

.stack-action-btn.stop:hover {
  background: var(--danger);
  border-color: var(--danger);
}

.stack-action-btn.restart:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.stack-action-btn.hibernate:hover {
  background: #6f42c1;
  border-color: #6f42c1;
}

.docker-table tbody {
  border-top: 2px solid transparent;
}

/* Premium Confirm Modal */
.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeIn 0.3s ease-out;
}

.confirm-modal {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.confirm-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.confirm-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.01rem;
}

.confirm-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.confirm-actions {
  display: flex;
  gap: 1rem;
}

.confirm-btn {
  flex: 1;
  padding: 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 0.9rem;
}

.confirm-btn.primary {
  background: var(--accent-color);
  color: #0d1117;
}

.confirm-btn.danger {
  background: var(--danger);
  color: white;
}

.confirm-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid var(--border-color);
}

.confirm-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.confirm-btn:active {
  transform: translateY(0);
}

/* ── WhatsApp Bot Panel ─────────────────────────────────── */
.bot-panel {
  background: rgba(22, 27, 34, 0.98);
  border: 1px solid rgba(35, 134, 54, 0.3);
  border-radius: 0 0 16px 16px;
  margin: -0.5rem 2rem 1rem;
  padding: 1rem 1.5rem;
  animation: slideDown 0.25s ease;
}

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

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

.bot-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #3fb950;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bot-close {
  background: none;
  border: none;
  color: var(--secondary-text);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  transition: color 0.2s;
}

.bot-close:hover {
  color: #fff;
}

.bot-panel-desc {
  font-size: 0.8rem;
  color: var(--secondary-text);
  margin-bottom: 0.8rem;
}

.bot-panel-desc strong {
  color: var(--text-color);
}

.bot-commands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bot-cmd-btn {
  background: rgba(35, 134, 54, 0.12);
  border: 1px solid rgba(35, 134, 54, 0.3);
  color: #3fb950;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.bot-cmd-btn:hover {
  background: rgba(35, 134, 54, 0.25);
  transform: translateY(-1px);
}

.bot-status {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--accent-color);
  padding: 0.5rem 0.8rem;
  background: rgba(88, 166, 255, 0.07);
  border-radius: 8px;
}
