.landingpageinfo ol{
  text-align:left;
}
.navigation {
  border-radius: 8px;
  border-style: none;
  background-color: #487fff !important;
}

.navigation:hover {
  background-color: #0b5ed7 !important;
}

.byline {
  font-size: 12px;
  font-weight: 400;
}

.side-menu-item {
  border-style: none !important;
  padding-top: 6px;
}

.breadcrumb {
  font-size: 12px !important;
  font-weight: 500;
}

.pill-secondary {
  background-color: #eee;
  padding: 6px 10px 6px 10px;
  border-radius: 6px;
}
thead {
	text-align: left;
	background: #e4e4e4 !important;
}

tr {
  border-style: none;
}

td {
  border-top-style: solid;
  border-color: #e0e0e0;
  border-width: 0.5px;
}

footer {
  background-color: white !important;
}

/* Sticky header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff; /* or var(--background) if your theme defines one */
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sticky-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Optional tweaks for logo and breadcrumb */
.sticky-header .logo img {
  max-height: 40px;
  vertical-align: middle;
}

.sticky-header #breadcrumb {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

:root { --header-h: 70px; } /* match your header height */

/* ensure ancestor containers don't add offset */
.grid-container {
  overflow: visible;
  align-items: start;
}

/* make sidebar sit directly below header and stay in view */
.grid-sidebar {
  position: sticky;
  top: var(--header-h);
  align-self: start;
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: inherit;
  z-index: 900;
  margin-top: 0;
  padding-top: 0;
}

/* inner nav scrollbars */
#contentnav {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b8c0cc transparent;
}
#contentnav::-webkit-scrollbar { width: 8px; }
#contentnav::-webkit-scrollbar-thumb { background: #b8c0cc; border-radius: 8px; }

/* disable sticky on narrow screens */
@media (max-width: 992px) {
  .grid-sidebar {
    position: static;
    height: auto;
    overflow: visible;
  }
}

.folder-children {
  display: none;
  margin-left: 1rem;
}

.folder-children.open {
  display: block;
}

.arrow-after::after {
  content: "▸";
  position: absolute;
  right: 0.5rem;
  transition: transform 0.2s ease;
}

a.open.arrow-after::after {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .logo {
    padding-left: 40px;
    padding-top: 4px;
  }
  .modal-search {
    width: 100%;
  }
  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
 .search-modal-margin {
    margin-top: 70px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
  } 
  .mainnavigation .active > a:first-child {
    color: #fff;
  }
}

.burgerbutton {
  position: fixed;
  top: -18px;
  left: -10px;
  width: 40px;
  height: 50px;
  z-index: 1000;
}

#burger:checked~.burgerbutton {
    color: #333;
    background: #fff;
}

.print-icon {
  font-size: 24px;
}