:root {
  --ic-gold: #f0a500;
  --ic-gold-dark: #c98700;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.navbar-brand .bi {
  color: var(--ic-gold);
}

.text-warning {
  color: var(--ic-gold) !important;
}

.btn-warning {
  background-color: var(--ic-gold);
  border-color: var(--ic-gold-dark);
  color: #000;
  font-weight: 600;
}

.btn-warning:hover {
  background-color: var(--ic-gold-dark);
  border-color: var(--ic-gold-dark);
  color: #000;
}

.stat-card {
  border-left: 4px solid var(--ic-gold);
  transition: transform 0.15s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ic-gold);
}

.table > :not(caption) > * > * {
  vertical-align: middle;
}

.device-badge {
  font-size: 1.1rem;
}

.session-link-box {
  background: #1a1a2e;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 1rem;
  font-family: monospace;
  word-break: break-all;
}

.download-card {
  max-width: 560px;
  margin: 0 auto;
}

.download-steps {
  counter-reset: step;
}

.download-steps li {
  counter-increment: step;
  list-style: none;
  padding: 0.5rem 0 0.5rem 2.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.download-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--ic-gold);
  color: #000;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-login {
  max-width: 380px;
  margin: 80px auto;
}

.pin-input {
  letter-spacing: 0.4em;
  text-align: center;
  font-size: 1.4rem;
}

.client-row:hover td {
  background: rgba(240, 165, 0, 0.05);
}
