/* Shweta Wellness Body Scan - App CSS */
.swbs-root .metric-card { transition: transform 0.2s; }
.swbs-root .metric-card:hover { transform: translateY(-2px); }

/* Scrollbar */
.swbs-root ::-webkit-scrollbar { width: 6px; }
.swbs-root ::-webkit-scrollbar-track { background: #f1f1f1; }
.swbs-root ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.swbs-root ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.swbs-root .ai-gradient-text {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.swbs-root .ai-border { position: relative; background: white; border-radius: 0.75rem; z-index: 1; }
.swbs-root .ai-border::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 0.85rem;
  background: linear-gradient(to right, #4f46e5, #9333ea);
  z-index: -1; opacity: 0.25;
}
