/* ==========================================================================
   HFZ Studio Website Prompt Generator — Custom Styles
   Extracted from inline <style> block (index.html)
   Theme: Light Mode
   ========================================================================== */

/* Custom scrollbar (light theme) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Premium gradient glow border effect (used on login card & output panel) */
.premium-glow-border {
  position: relative;
}
.premium-glow-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom right, rgba(255, 90, 95, 0.4), rgba(0, 242, 254, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
