.vc-btn {
  background: #3b82f6;
  border: 0;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.vc-btn:hover { background: #2563eb; }
.vc-btn.small { padding: 0.3rem 0.6rem; font-size: 0.8rem; }
.vc-btn.danger { background: #b91c1c; }
.vc-btn.danger:hover { background: #991b1b; }
@media (max-width: 480px) {
  .vc-btn { display: block; width: 100%; }
}

.vc-dash {
  max-width: 1000px;
  margin: 2rem auto;
  background: #111;
  color: #eee;
  padding: 1.5rem;
  border-radius: 12px;
  font-family: sans-serif;
}
.vc-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.vc-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.vc-stats div {
  flex: 1;
  min-width: 120px;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
}
.vc-stats strong {
  font-size: 1.4rem;
  display: block;
}
.vc-stats span {
  font-size: 0.8rem;
  color: #aaa;
}
.vc-actions {
  margin: 1.2rem 0;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.vc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
}
.vc-table th,
.vc-table td {
  padding: 0.6rem;
  border-bottom: 1px solid #333;
  text-align: left;
}
.vc-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
}
.vc-badge.ok { background: #15803d; color: #fff; }
.vc-badge.bad { background: #dc2626; color: #fff; }
.vc-note {
  padding: 0.5rem 1rem;
  background: #1c1c1c;
  border-radius: 6px;
  color: #ccc;
}
@media (max-width: 600px) {
  .vc-stats { flex-direction: column; }
  .vc-topbar { flex-direction: column; gap: 0.5rem; }
}
.vc-credit-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #15803d;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  animation: vc-fade 1.2s forwards;
  z-index: 1000;
}
@keyframes vc-fade {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
