/* Copyright 2026 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

:root {
  --header-text-color: rgb(92, 97, 102);
  --tabs-border-color: #c8c8c8;
}

header {
  color: var(--header-text-color);
  border-bottom: 1px solid var(--tabs-border-color);
}

h1 {
  color: var(--header-text-color);
  font-size: 1.5rem;
  margin-bottom: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
  overflow: hidden;
}
