/* Chainlit Widget Custom Styling */

/* Hide the default Chainlit bubble button - we control opening/closing
** via Ask AI button and close button
*/
#chainlit-copilot-button {
  visibility: hidden;
}

/* Set AI chat z-index to be below drawers and other overlays */
#chainlit-container,
#chainlit-copilot {
  z-index: 210;
}

/* Custom Sifflet close button */
button[data-sifflet-custom-close],
.sifflet-custom-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31.5px;
  height: 31.5px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
}

button[data-sifflet-custom-close]:hover,
.sifflet-custom-close-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 1);
}

button[data-sifflet-custom-close] span,
.sifflet-custom-close-button span {
  font-size: 30px;
  display: flex;
  margin-bottom: 2px;
}
