﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  height: auto;
}

body {
  line-height: 160%;
  font-family: sans-serif;
}

strong {
  font-weight: bold;
}

h1 {
  font-weight: bold;
  font-size: 175%;
  line-height: 175%;
}

h2 {
  font-weight: bold;
  font-size: 125%;
  line-height: 125%;
}

a {
  color: #fff;
}

th {
  text-align: left;
}

form div {
  width: 800px;
}
form div label {
  font-size: 80%;
  line-height: 100%;
}
form div input {
  box-sizing: border-box;
  line-height: 160% !important;
  width: 100%;
}
form div input[type=submit] {
  margin-top: 1rem;
}

.dashboard-body {
  background-color: #333;
}

.dashboard-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /*stretch*/
  align-content: flex-start;
  width: 100%;
  gap: 2rem;
  margin: 1rem;
}
.dashboard-container .dashboard-piece {
  flex-basis: 32%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
}

body {
  display: flex;
}

.site-wide-container {
  box-sizing: border-box;
  align-items: stretch;
  display: flex;
  flex: 1 1 100%;
  flex-flow: row nowrap;
  height: 100%;
  justify-content: space-between;
  width: 100%;
}

.main-navigation {
  box-sizing: border-box;
  flex: 1 0 12.5%;
  display: flex;
  flex-flow: column nowrap;
  border-right: 3px ridge #666;
  background-color: #333;
  color: #fff;
}
.main-navigation .qol-navigation {
  box-sizing: border-box;
  flex: 9 1 90%;
  width: 100%;
  padding: 1rem;
}
.main-navigation .footer-navigation {
  box-sizing: border-box;
  align-self: flex-end;
  flex: 1 0 10%;
  /*bottom: 0;
  left: 0;
  min-height: 150px;
  max-height: 25%;
  position: absolute;
  width: 100%;*/
  padding: 1rem;
  width: 100%;
  font-size: 80%;
  line-height: 150%;
  border-top: 3px ridge #666;
}

.main-content {
  box-sizing: border-box;
  flex: 9 1 70%;
  display: flex;
  flex-flow: column nowrap;
  /*    .qol-console {
      box-sizing: border-box;
      align-self: flex-end;
      flex: 1 0 25%;
      background-color: #333;
      color: #fff;
      font-family: Courier, monospace;
      font-size: 8px;
      padding: 10px;
      width: 100%;
      border-top: $inner_page_border;
  }*/
}
.main-content .qol-content {
  box-sizing: border-box;
  flex: 9 1;
  width: 100%;
  padding: 1rem;
  background-color: #333;
  color: #fff;
}
.main-content .qol-content hr.section-divider {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.qol-messages {
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
  /*padding: 1rem;*/
  flex: 1 0 17.5%;
  border-left: 3px ridge #666;
}
.qol-messages .popout {
  box-sizing: border-box;
  position: sticky;
  top: 0px;
  right: 20px;
  width: 100%;
  height: 100vh;
  /*padding-top: 20px;*/
  background-color: #f00;
  padding: 1rem;
}
.qol-messages .popout .item {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  color: #333;
  width: 100%;
  margin-top: 1rem;
  padding: 0.5rem;
}
.qol-messages .popout .item:first-child {
  margin-top: 0;
}

.http-response-console pre code {
  background-color: #edda8e;
  margin: 1rem;
  padding: 0.5rem;
  font-family: Courier, monospace;
  color: #333;
  display: block;
  min-height: 200px;
}

.hidden {
  display: none;
}

.cancel-button {
  display: none;
}

.dev-code-output {
  margin-top: 4rem;
  max-height: 900px;
  overflow-y: auto;
  overflow-x: hidden;
}
.dev-code-output pre {
  font-size: 80%;
  line-height: 140%;
}

.default-table table.full-width-table {
  width: 100%;
}
.default-table table tr:nth-child(odd) {
  background-color: transparent;
}
.default-table table tr:nth-child(even) {
  background-color: #222;
}
.default-table table tr:first-child {
  background-color: transparent;
}
.default-table table tr th, .default-table table tr td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.default-table table tr th {
  font-weight: bold;
}
json-prettify {
  display: block;
  unicode-bidi: embed;
  font-family: monospace;
  white-space: pre;
  line-height: 140%;
}
