#dashboard {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1em;
  align-items: flex-start;
  font-size: .9em;
  box-sizing: border-box;
  background-color: transparent;
  min-height: 0;

  /* Add padding-bottom to allow for shadow of the child
  section-content-container */
  padding-bottom: .5em;

  /* Hard width to prevent collapsing */
  width: min(calc(100vw - 2em), 150em);
  min-width: min(calc(100vw - 2em), 150em);
}

#dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  padding-right: 4px;
  margin-right: -.8em;  /* Encroach on parent's right padding*/

  /* Fixed width with no shrinking */
  width: 25em;
  min-width: 25em;
  max-width: 25em;

  /* Scrollbar handling */
  scrollbar-gutter: stable;
  max-height: fit-content;
  overflow-y: auto;
  /* Prevents horizontal scrollbar on macOS when vertical scrollbar
  consumes width */
  /*overflow-x: hidden;*/
}


#dashboard-sidebar.collapsed {
  /*display: none;*/
  width: 1em;
  min-width: 1em;
  max-width: 1em;
  overflow-y: clip !important;
  padding-left: 0;
  padding-right: 0;
}

#dashboard-sidebar-title.collapsed {
  display: none;
}


#dashboard-sidebar-toggle {
  color: #838383;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
}
#dashboard-sidebar-toggle:hover {
  /*background-color: color-mix(in srgb, var(--brand) 80%, #fff);*/
}

/* Override section-content-container when collapsed class is added.
  See javascript.
 */
.section-content-container.collapsed {
  padding-left: .2em;
  padding-right: .7em;
  overflow-y: clip;
}

/* Items inside left sidebar */
.sidebar-content-container {
  font-size: .85rem;
  /*width: 100%;*/
    /* Ensure content shrinks if scrollbar eats space */
  /*max-width: 100%;*/
  margin-top: 1em;
  width: auto;
  /* Ensure it fills space but respects boundaries */
  align-self: stretch;
}

.sidebar-content-container.collapsed {
  visibility: hidden;
  width: 2em;
  min-width: 2em;
  max-width: 2em;
  overflow-x: clip;
}

/*.sidebar-content-container table {*/
/*  width: 100%;*/
/*}*/

#dashboard-right-side {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 0 .5em .5em 0;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: flex-start;
  /* Fixed calculated width based on left sidebar size */
  width: min(calc(100vw - 26em), 125em);
  /*min-width: min(calc(100vw - 15em), 125em);*/
}

/* All children of right side */
#dashboard-right-side > * {
  /* ensure child elements take full available width but cap at 100em */
  width: 100%; /* Take full width of the container */
  box-sizing: border-box; /* Include padding and border in width calculation */
    flex-shrink: 0;  /* KEY: Prevents flex items from shrinking below their content size */
  min-height: fit-content;
}
.dashboard-sidebar-title,
.dashboard-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5em;
  width: 100%;
  padding: 0;
  line-height: 1.5em;
  background-color: color-mix(in srgb, rgb(22, 126, 90) 12%, rgb(255, 255, 255));
}
.dashboard-sidebar-title {
    margin-bottom: 1em;
  background-color: white;
  border-top: 1px solid silver;
  border-bottom: 1px solid silver;
  position: sticky;
  top: 0;
  z-index: 10;
   box-shadow: 0 8px 12px rgba(255, 255, 255, 1.0);

}

.dashboard-title-container.collapsed {
  background-color: transparent;
  border: none !important;
}

.dashboard-title {
  color: black;
  font-weight: 600;
  font-size: .9rem;
  margin: 0 .5em;
}

hr {
  margin: 6pt 0;
}

td, th {
  font-weight: normal;
  padding: 0 .5em;
}

th.recap-title {
  /*font-weight: 500;*/
  white-space: nowrap;
  text-align: left;
  font-weight: 500;
}
th.row-label {
  /*font-weight: 500;*/
  white-space: nowrap;
  text-align: right;
  width: 10em;
}
th.row-label-wide {
  /*font-weight: 500;*/
  width: 15em;
  white-space: nowrap;
  text-align: right;
}

td.recap-metric {
  text-align: right;
  width: 8em;
}
td.recap-metric-left {
  text-align: left;
  width: 15em;
}

.site-news-release-notes {
  color: darkblue;
  font-style: normal;
  font-size: 14px;
}