/* Hide elements in Hotwire Native apps. */
.hide\@native {
  display: none !important;
}

/* Hide the submit button when the "form" component is registered. */
[data-bridge-components~="form"]
[data-controller~="bridge--form"]
[type="submit"] {
  display: none;
}

/* Hide the overflow button when the "overflow-menu" component is registered. */
[data-bridge-components~="overflow-menu"]
[data-controller~="bridge--overflow-menu"] {
  display: none;
}
