html,
body,
button,
input,
select,
textarea {
  font-family: "Quicksand", sans-serif !important;
}

body * {
  font-family: inherit;
}

/* Iframe widgets are frameless by default — restore Glance widget chrome */
.widget-type-iframe .widget-content {
  padding: 1.25rem;
  background: var(--color-widget-background);
  border-radius: var(--border-radius);
  border: 1px solid
    color-mix(
      in srgb,
      var(--color-primary) 45%,
      var(--color-widget-content-border)
    );
  box-shadow: 0px 3px 0px 0px
    hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl)) - 0.5%));
}

.widget-type-iframe iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: calc(var(--border-radius) - 1px);
  overflow: hidden;
  background: var(--color-widget-background);
}
