<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------------------------------------*/
/* CSS overrides for CVB documentation */
/* Based on Doxygen Awesome 1.6.1      */
/*-------------------------------------*/

html {
  --primary-color:  #a00003;
  --primary-dark-color: #005c5e;
  --primary-light-color: #58b7b3;
  --primary-lighter-color: #98cdc8;
  --primary-lightest-color: #98cdc8;

  --page-foreground-color:  #415464;
  --page-secondary-foreground-color: #989ca7;

  --font-family: -apple-system,Roboto Regular;

  --todo-color: rgba(100,160,200,.3);
  --todo-color-dark: #00C0E0;
  --todo-color-darker: #274a5c;

  --toc-background: whitesmoke;
  --toc-font-size: 18px;
  --toc-line-height: 30px;

  --code-background: #dfdfe4;

  --fragment-background: #f8f8f8;
  --fragment-foreground: #333333;
  --fragment-keyword: #0055ff;
  --fragment-keywordtype: #0055ff;
  --fragment-keywordflow: #0055ff;
  --fragment-token: #a31515; 
  --fragment-comment: #008000;
  --fragment-link: #508cc0;
  --fragment-preprocessor: #d71bff;
  --fragment-linenumber-color: #21738c;
  --fragment-linenumber-background: #f8f8f8;
  --fragment-linenumber-border: #dcdcdc;
  --fragment-lineheight: 20px;

  --content-width: 1000px;
}

#projectlogo img {
  max-height: calc(var(--title-font-size) * 3.5);
}

#projectlogo a:hover {
  background: none;
}

#top nav {
  flex-grow: 1;
}

@media screen and (min-width: 880px) {
  #top {
    flex-wrap: nowrap;
  }
}

:not(.main-nav-wrapper) &gt; #main-nav {
  display: none;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* Move Table of Contents to the top of the content section */

div.toc {
  background-color: var(--toc-background);
  border: none;
  box-shadow: none;
  margin: 1em 0 2em 0;
  width: 100%;
  box-sizing: border-box;
  float: none;
  padding: 0 var(--spacing-large);
  display: inline-block;
}

div.toc h3 {
  display: none;
}

div.toc li {
  font-family: var(--font-family);
  font-size: var(--toc-font-size);
  line-height: var(--toc-line-height);
}

div.toc ul li.level1 {
  margin-top: 5px;
}

div.toc li.level1.empty .level2 {
  margin-left: 0;
}

div.toc li:before {
  content: none;
}

dl.todo,
dl.remark {
  padding: var(--spacing-medium);
  margin: var(--spacing-medium) 0;
  color: var(--page-background-color);
  overflow: hidden;
  margin-left: 0;
  border-radius: var(--border-radius-small);
}

dl.remark {
  background: var(--note-color);
  border-left: 8px solid var(--note-color-dark);
  color: var(--note-color-darker);
}

dl.remark dt {
  color: var(--note-color-dark);
}

dl.todo {
    background: var(--todo-color);
    border-left: 8px solid var(--todo-color-dark);
    color: var(--todo-color-darker);
}

dl.todo dt {
    color: var(--todo-color-dark);
}

dl.todo dd {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

h2.memtitle div.memproto table.memname {
  font-family: var(--font-family);
}

.contents img, .contents .center, .contents center {
  max-width: 100%;
  overflow: scroll;
}

#doc-content {
  height: auto !important;
  padding-bottom: 0 !important;
  flex: 1;
  margin-bottom: 20px;
}

#doc-content h1 {
  font-size: 2em;
}

body {
  overflow: auto !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

div.contents {
  margin: 0px auto;
  max-width: var(--content-width);
  padding-top: 1em;
}

a {
  color: #991616;
}

.contents a:visited {
  color: #AA2222;
}

a.code,
a.code:visited {
  color: #AA3333;
  font-weight: bold;
}

a.codeRef,
a.codeRef:visited {
  color: #AA3333;
  font-weight: bold;
}

.image {
  text-align: left;
}

.mermaid,
p:has(img.inline) {
  text-align: center;
}

.mermaid svg text {
  font-family: var(--font-family);
}

.memproto {
  color: #545454
}

dl.note {
  border-left: 0px solid;
}

dl.attention {
  border-left: 0px solid;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #253447;
  color: #fff;
  padding: 1%;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
  /* Flexbox for layout */
  justify-content: center;
  /* Space between text and buttons */
  text-align: center;
  gap: 10px;
  align-items: center;
  /* Align items vertically in the center */
  z-index: 1000;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  margin: 0 20px;
  font-size: 14px;
}

.cookie-banner a {
  color: #345089;
  text-decoration: underline;
}

.cookie-banner button {
  padding: 8px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#accept-cookies {
  background-color: #345089;
  color: white;
}

#decline-cookies {
  background-color: #272727;
  color: white;
}

/* Standard table for CVB documentation */
.standard-table {
  border-collapse: collapse;
  border: 1px solid lightgray;
  width: 100%; 

  max-width: 100%;
  table-layout: auto;
  word-break: break-word;
}  
.standard-table th {
  background-color: #e9e9e9;
  padding: 10px;
  text-align: center;
  border: 1px solid lightgray;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.standard-table td {
  background-color: #fdfdfd;
  padding: 10px;
  border: 1px solid lightgray;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.standard-figcaption
{
  font-size: 14px;
  color: gray;
  text-align: center;
}

/* Table for TOC overview */
.toc-table {
  width: var(--content-width);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 15px;
  border: 1px solid white;
}  
.toc-table tr {
  height: 60px;
  background-color: whitesmoke;
}

.toc-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 24px;
  padding: 10px;
  border: none;
}

/* Navigation buttons */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 2em 0;
}

.navigation-buttons a {
  background-color: whitesmoke;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  font-weight: normal;
}

@media print {
  .navigation-buttons {
    display: none !important;
  }

  .cookie-banner {
    display: none !important;
  }
}

.block-table {
  width: 100%;
  max-width: var(--content-width);
  text-align: center;
  margin: 0 auto;
  table-layout: fixed;
  vertical-align: middle;
  font-size: var(--page-font-size);
  margin: 0 auto;
  line-height: initial;
}

.block-table ul {
  list-style: none;
}

.block-table th {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: lightgrey;
  padding: 1px 5px;
}

.block-table td {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: whitesmoke;
  padding: 20px;
  border: 0px solid transparent;
  background-clip: padding-box;
}

.block-table p {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0.5em;
  line-height: initial !important;
}

.block-table tr &gt; td + td {
  border-left-width: 15px;
}

.block-table:not(.programming-languages) tr + tr &gt; td {
  border-top-width: 15px;
}

.getting-started {
  text-align: left;
  margin-top: 8em;
}

.getting-started td {
  padding: 5px;
  border: initial;
}

.getting-started td:not(:first-child) {
  text-align: center;
}

.getting-started tr:not(:first-child) td:not(:first-child) {
  font-size: 32px;
}

.getting-started img {
  padding-bottom: 20px;
  width: 40px;
  height: 40px;
}

.programming-languages td {
  padding: 5px 0;
}

.programming-languages tr:first-child:not(:has(+ tr)) &gt; td {
  padding: 30px 0;
}

.programming-languages tr:first-child &gt; td {
  font-size: 24px;
}

/* Workaround for doxygen placing a linebreak on the last table element */
.programming-languages tr br {
  display: none;
}

@media (min-width: 550px) {
  .programming-languages tr:first-child td::after {
    content: "";
    padding-left: 20px;
  }

  .programming-languages tr:first-child td::before {
    margin-right: 12px;
    vertical-align: middle;
  }

  .programming-languages tr:first-child .cpp:before {
    content: url("Tutorial-VC_32x32.png");
  }

  .programming-languages tr:first-child .dotnet:before {
    content: url("Tutorial-NET_32x32.png");
  }

  .programming-languages tr:first-child .python:before {
    content: url("Tutorial-Python_32x32.png");
  }
}

.block-table-left-submenu {
  text-align: left;
  padding-bottom: 4rem;
  font-size: 24px;
}

.block-table-left-submenu ul {
  font-size: var(--page-font-size);
  text-wrap: auto;
}

.block-table-left-submenu ul li {
  margin-bottom: 5px;
}

.api-concepts-topics {
  text-align: left;
  padding: 9px 5px;
}

.api-concepts-topics td {
  padding: 10px;
  border: initial;
}

.sectiontoc {
  font-size: 24px;
  max-width: 800px;
}

.figure-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

.figure-flex figure {
  margin: 0;
  text-align: center;
  display: table;
}

figure img {
  text-align: center;
  margin: 5px 20px;
}

.figure-flex-joining-arrows {
  flex-wrap: nowrap;
}

.figure-flex-joining-arrows figure img {
  display: table-cell;
  box-sizing: border-box;
  margin: 0;
}

.figure-flex-joining-arrows figure:not(:last-child)::after {
  content: "ðŸ¡†";
  padding: 5px;
  vertical-align: middle;
  display: table-cell;
}

@media (max-width: 1000px) {
  .figure-flex-joining-arrows {
    flex-direction: column;
    align-items: center;
  }

  .figure-flex-joining-arrows figure {
    display: block;
  }
  
  .figure-flex-joining-arrows figure:not(:last-child)::after {
    content: "ðŸ¡‡";
    display: block;
  }
}

/* Table for flowcharts */
.table-flowchart {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;

  max-width: 100%;
  table-layout: auto;
  word-break: break-word;
}

.table-flowchart td, 
.table-flowchart th {
  padding: 10px;
  text-align: center;
}

.table-flowchart th {
  background-color: white;
}

.table-flowchart td {
  background-color: whitesmoke;
}

.table-flowchart td.box {
  background-color: whitesmoke;
  border: 2px solid lightgray;
}

.table-flowchart .white-bg {
  background-color: white;
}

.table-flowchart .box-active {
  background-color: #ffe5b4;
  border: 2px solid #e6c091; 
}

/* Table for Overview */
.table-overview {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  word-break: break-word;
  border: 3px solid white;
}

.table-overview th {
  background-color: lightgray;
  padding: 10px;
  border: 3px solid white;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  vertical-align: middle;
  text-align: center;
}

.table-overview td {
  background-color: whitesmoke;
  padding: 10px;
  border: 3px solid white;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  vertical-align: middle;
}

.table-overview img {
  display: block;
  margin: 0 auto 5px auto;
}

/*
.table-overview td.centered,
.table-overview th.centered {
  text-align: center;
}*/

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
</pre></body></html>