/* Chainlit UI overrides.
   Goal: keep the greeting GIF transparent and remove any default borders/card styling.

   Note: Chainlit sanitizes raw <img> HTML in Markdown, so we use Markdown image syntax.
   That means we target the rendered <img> via its src.
*/

img[src*="hawa-hi_400.gif"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: block;
  max-width: 100%;
  height: auto;
}
