:root {
    --top-nav-bg-colour: #fff;
    --secondary-colour: #0a58ff;
    --side-nav-bg-colour: #F8F8F8;
    --content-bg-colour: #ffffff;
}

body {
    margin: 0;
    font-family: Lato, sans-serif;
    font-weight: 200;
}

.content h2{
    font-size: 40px;
    font-weight: 50;
}

.content .passage{
    padding-top: 20px;
}

.logo {
    max-width: 180px;
    height: auto;
    width:200px;
    margin-top: 10px;
    margin-left: 5px;
    padding: 3px;
    padding-right: 25px;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: var(--top-nav-bg-colour);
    /* overflow: hidden; */
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
    z-index: 1000;
    display: flex;
    box-shadow: 1px 1px 5px 1px lightgray;
}

.topnavmenu{
    padding: 24px;
    right: 20;
    position: relative;
    display: inline-block;
}

.topnavmenu a{
    text-decoration: none;
    display: inline-block;
    color: darkgray;
    text-decoration: none;
    padding-left: 10px;
    font-size: 15px;
}

.topnavmenu a:hover{
    color: var(--secondary-colour);
    text-decoration: none;
}

.topnavmenu a.active{
    color: black;
    text-decoration: none;
}


.sidenav {
    top: 80px;
    left: 20px;
    margin-top: 0px;
    /* Add a top margin to avoid content overlay */
    height: auto;
    width: 180px;
    position: fixed;
    z-index: 1;
    background-color: var(--side-nav-bg-colour);
    overflow-x: hidden;
    padding: 8px;
    padding-right: 15px;
    padding-left: 8px;
}

.example-table {
    border-style : hidden;
}

.example-table td{
    border-style : hidden;
    padding: 0px;
    padding-right: 5px;
    width: 50%;
}

.sidenav a, .dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
    color: #818181;
    display: block;
    text-align: left;
    border: none;
    background: none;
}

.dropdown-container a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 200;
    color: #818181;
    display: block;
    text-align: left;
    border: none;
    background: none;
}


.sidenav a:hover, .dropdown-btn:hover{
    color: var(--secondary-colour);
    text-decoration: none;
}

/* Add a color to the active/current link */
.sidenav a.active {
    color: #000000;
}

/* Global styles */
.content {
    margin-top: 45px;
    /* Add a top margin to avoid content overlay */
    margin-left: 195px;
    /* Same as the width of the sidenav */
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    padding: 30px 15%;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Code blocks */
pre {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
    overflow: auto;
}

code {
    font-family: Consolas, monospace;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* API endpoints */
.endpoint {
    margin-bottom: 30px;
}

.endpoint h3 {
    margin-bottom: 10px;
}

.endpoint p {
    margin-bottom: 5px;
}

.endpoint ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.endpoint li {
    margin-bottom: 5px;
}

.endpoint .method {
    font-weight: bold;
    margin-right: 5px;
}

.endpoint .path {
    color: #337ab7;
}

.endpoint .description {
    margin-top: 5px;
}

.endpoint .params {
    margin-top: 15px;
}

.endpoint .params table {
    margin-bottom: 0;
}

.endpoint .params th {
    background-color: #fff;
    font-weight: normal;
}

.endpoint .params td {
    background-color: #f8f8f8;
}

.endpoint .params .param-name {
    font-weight: bold;
}

.endpoint .params .param-type {
    color: #888;
}

.endpoint .params .param-required {
    color: #ff0000;
    font-weight: bold;
}

/* Examples */
.example {
    margin-bottom: 15px;
}

.example pre {
    margin-bottom: 10px;
}

.example .title {
    font-weight: bold;
    margin-bottom: 5px;
}

.example .description {
    margin-bottom: 5px;
}

.example .response {
    font-weight: bold;
    margin-bottom: 5px;
}

.example .response pre {
    margin-bottom: 10px;
}

.float {
    position: fixed;
    width: auto;
    height: auto;
    bottom: 40px;
    right: 40px;
    padding: 12px;
    border-radius: 5px;
    background-color: #0c59ff;
    color: #FFF;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    text-decoration: none;
}

.float:hover {
    text-decoration: none;
    color: #bfc0d6;
}

hr.solid {
    border-top: 1px solid #bbb;
}


.container {
    margin: 20px auto;
    width: 100%;
    height: auto;
    background-color: #fff;
    display: grid;
    grid-template-columns: 48% 48%;
    grid-row: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.container .box {
    padding-left: 20px;
    height: 100%;
    border-radius: 4px;
    border-color: #000;
    border-width: 1px;
    border-style: solid;
    color: #000;
    /* display:flex; */
    font-size: 16px;
}

.container .box:hover {
    border-width: 2px;
}

/* Style the sidenav links and the dropdown button
.sidenav a, .dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width:100%;
    text-align: left;
    cursor: pointer;
    outline: none;
  } */
  
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container {
    display: none;
    padding-left: 8px;
}
  
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }

  .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
  }