.dashboard-shell {
  box-sizing: border-box;
}

.chart-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chart-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

@media (min-width: 901px) {
  .chart-row {
    flex-direction: row !important;
  }
}

.chart-col {
  min-width: 0;
}

.chart-col-wide {
  flex: 2 1 0;
}

.chart-col-narrow {
  flex: 1 1 0;
}

.chart-col-half {
  flex: 1 1 0;
}

.selector-block .Select-control,
.selector-block .Select-placeholder,
.selector-block .Select-value-label,
.selector-block .Select-input > input {
  font-size: 14px;
}

@media (max-width: 900px) {
  .dashboard-shell {
    padding: 12px !important;
  }

  .chart-row {
    flex-direction: column;
  }

  .chart-col-wide,
  .chart-col-narrow,
  .chart-col-half {
    flex: 1 1 auto;
    width: 100%;
  }
}
