/* Fix for blue stroke/border issues */
html, body, *, *::before, *::after {
  border-top: none !important;
  outline: none !important;
  border: none !important;
}

/* Specifically target any blue borders */
* {
  border-color: transparent !important;
}

/* Remove any default browser borders */
html {
  border: none !important;
  outline: none !important;
}

body {
  border: none !important;
  outline: none !important;
}

/* Remove focus outlines that might be blue */
:focus {
  outline: none !important;
  border: none !important;
}

/* Remove any default input/button borders */
input, button, textarea, select {
  border: none !important;
  outline: none !important;
}