<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Remove the Edit icon from the admin toolbar since it serves no purpose other than confusion and lies */
#toolbar-bar .toolbar-icon-edit { display: none; }

/* DRUP-2821: Action link styling */
.main-content .action-links a.button.button-action {
  background-color: #eee;
  border-radius: .5rem;
  border: 2px solid transparent;
  border-inline: 2px solid #ccc;
}

/* DRUP-2821: Group form styling since we were cleaning up the page */
.path-group .views-exposed-form .d-flex {
  gap: 2rem;
}
/* Fix for in case we clean up and fix views-exposed-form.html.twig after it was wrongly overridden. #CYA */
.path-group .views-exposed-form .form--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.path-group .views-exposed-form .js-form-item {
  display: flex;
  flex-direction: column;
}
.path-group .views-exposed-form label {
  font-weight: 700;
}
</pre></body></html>