.outlook-workspace__toolbar-shell {
  width: 100%;
  min-width: 0;
}

.outlook-workspace__toolbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.outlook-workspace__toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.outlook-workspace__toolbar-group--mode,
.outlook-workspace__toolbar-group--interval,
.outlook-workspace__toolbar-group--visibility {
  flex-wrap: wrap;
}

.outlook-workspace__toolbar-label {
  color: #667085;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.outlook-workspace__toolbar-value {
  color: #152238;
  font-size: 13px;
  white-space: nowrap;
}

.outlook-workspace__toolbar-toggle,
.outlook-workspace__toolbar-refresh {
  appearance: none;
  border: 1px solid rgba(21, 34, 56, 0.14);
  background: #ffffff;
  color: #152238;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.outlook-workspace__toolbar-toggle.is-active,
.outlook-workspace__toolbar-refresh:hover {
  border-color: rgba(0, 89, 255, 0.28);
  background: rgba(0, 89, 255, 0.08);
  color: #0059ff;
}

.outlook-workspace__toolbar-interval[hidden] {
  display: none;
}

.outlook-workspace__status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 34, 56, 0.08);
  color: #152238;
  font-size: 12px;
  font-weight: 700;
}

.outlook-workspace__status-pill[data-status="live"] {
  background: rgba(0, 89, 255, 0.08);
  color: #0059ff;
}

.outlook-workspace__status-pill[data-status="stale"] {
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
}

.outlook-chart-host {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(0, 89, 255, 0.02), rgba(255, 255, 255, 0)),
    #ffffff;
}

.outlook-chart-host__canvas {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

#outlookWorkspacePrimaryColumnSurface {
  overflow: hidden;
  padding: 0;
}

#outlookWorkspaceSecondaryColumnSurface,
#outlookWorkspaceSidebarColumnSurface {
  padding: 0;
}

#outlookWorkspaceSidebarColumnSurface {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: #ffffff;
  padding-right: 0;
  scrollbar-gutter: auto;
}

@media (max-width: 1340px) {
  .outlook-workspace__toolbar-content {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .outlook-chart-host__canvas {
    min-height: 380px;
  }
}
