/* Apply focus styles to all focusable elements globally (oreo-style)*/
input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus,
.shiny-input-container input:focus,
.shiny-bound-input button:focus,
.shiny-bound-input select:focus,
:focus {
  box-shadow: 0 0 0 .25rem white;  /* White box-shadow */
  outline: .375rem double black;   /* Double black outline */
  border-radius: .125rem;          /* Rounded corners */
}

/* Apply focus styles to buttons (oreo-style) */
.btn:focus,
.action-button:focus,
.shiny-bound-input .btn:focus,
.btn-primary:focus {
  box-shadow: 0 0 0 .25rem white;  /* White box-shadow */
  outline: .375rem double black;   /* Double black outline */
  border-radius: .125rem;          /* Rounded corners */
}