/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */
:root {
  --header-height: 60px;
}

html,
body,
#container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
#container > div {
  height: 100%;
}

.main_header {
  padding: 0.5rem 0 0 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main_header > .main_header__project-info {
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
}

.main_header img {
  width: auto;
  height: 30px;
}

.main-section {
  height: calc(100% - var(--header-height));
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.table__center-column {
  text-align: center;
}

.icon--ok {
  font-size: 1rem;
  color: green;
}
.icon--warning {
  font-size: 1rem;
  color: orange;
}

.icon--error {
  font-size: 1rem;
  color: darkred;
}

.link {
  color: #0078d4;
  text-decoration: none;
}

.tooltip-text {
  margin-bottom: 4px;
  font-size: 10px;
}
