
/* Alerts history */
.gh-history-filter-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

@media (max-width: 900px){
  .gh-history-filter-grid{
    grid-template-columns:1fr;
  }
}

@media print{
  .gh-topbar,
  .gh-page-actions,
  .gh-history-filter-grid{
    display:none !important;
  }

  body{
    background:white !important;
  }

  .gh-card,
  .gh-hero{
    box-shadow:none !important;
  }
}
