/*
SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

body {
    margin: 0px;
    color: #000;
    background: #f7f7f7;
    overflow: hidden;
    font-family: "Roboto",sans-serif;
    font-size: 16px;
  }
  div.body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
  }
  .topnav {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    display: flex;
    height: 48px;
  }
  .topnav ul {
    padding: 0px 2em;
  }
  .topnav li {
    display: inline;
  }
  .topnav > div {
    height: 20px;
    padding: 14px;
  }
  .topnav div.logo svg {
    width: fit-content;
    height: 100%;
  }
  .topnav div.title {
    font-weight: bold;
    overflow: hidden;
    font-size: 17px;
  }
  div.spacer {
    flex: 1;
    min-width: 10px;
  }
  .topnav a {
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  .topnav a:hover {
    box-shadow: inset 0px -3px #497200;
  }
  .topnav a.active {
    box-shadow: inset 0px -3px #497200;
    background: linear-gradient(0deg, rgba(118, 185, 0, 1) 0%, rgba(0, 0, 0, 1) 20%);
  }
  div.main {
    flex: 1;
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .pane {
    width: 100%;
    text-align: center;
  }
  .paneHelper {
    max-width: 850px;
    margin: auto;
  }
  .light {
    background-color: #fff;
    color: #000;
  }
  .dark {
    background-color: #000;
    color: #fff;
  }
  .stretch {
    flex: 1;
  }
  .light a {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
    text-decoration-color: #76b900;
  }
  .dark a {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-decoration-color: #76b900;
  }
  p {
    font-size: 24px;
  }
  div.buttonBar {
    display: flex;
    flex-direction: row;
  }
  a.button {
    flex: 1;
    background-color: #76b900;
    color: #000;
    padding: 15px;
    max-width: 250px;
    margin: 20px;
    font-weight: bold;
  }
  h1 {
    width: 100%;
    display: block;
    text-align: left;
  }
  small {
    display: block;
    margin: 10px;
  }