/* agent/public/custom.css */

/* Scrollbar — light mode */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(210 40% 93%); }
::-webkit-scrollbar-thumb { background: hsl(210 30% 75%); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: hsl(221 83% 53%); }

/* Login card */
.cl-login-card, [class*="login"] {
  background: hsl(0 0% 100% / 0.85) !important;
  border: 1px solid hsl(210 30% 85%) !important;
  backdrop-filter: blur(12px);
}

/* Slightly rounded — softer but not circular */
img[class*="avatar"] {
  border-radius: 8px !important;
}

/* Square bot avatar — target the exact wrapper span */
span.rounded-full:has(> img[alt*="Avatar for SentriQ"]) {
  border-radius: 0 !important;
}
