[v-cloak] { display: none; }

.input {
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #e2e8f0;
  width: 100%;
  outline: none;
  transition: border-color .15s, background .15s;
}
.input:focus { border-color: #38bdf8; background: #0a1626; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background .15s, transform .05s;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #2563eb; color: white; }
.btn-primary:hover { background: #1d4ed8; }
.btn-ghost { background: transparent; color: #cbd5e1; }
.btn-ghost:hover { background: #1e293b; }
.btn-danger { background: #b91c1c; color: white; }
.btn-danger:hover { background: #991b1b; }

.card {
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: 0.75rem;
  padding: 1rem;
}

.bar {
  position: relative;
  height: 0.5rem;
  background: #1e293b;
  border-radius: 9999px;
  overflow: hidden;
}
.bar > span {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: 9999px;
  transition: width .25s ease;
}

.tab-btn {
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  color: #94a3b8;
  font-weight: 500;
}
.tab-btn.active { background: #1e293b; color: #f1f5f9; }
