.md-typeset h2 {
  color: #004682;
  font-size: 32px;
  font-weight: 700;
}
.md-typeset h3 {
  font-size: 1.5em;
  font-weight: 600;
}
.md-typeset h4{
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: 600;
  color:#494949
}
.md-typeset hr{
  margin: 0.5em 0;
}
section {
  display: flex;
  justify-content: space-between;
  align-items:baseline;
  gap: 20px;
}
p{
  margin-top: 5px;
  margin-bottom: 5px;
}
code{
  font-weight: bold;
}
a:hover{
  text-decoration: underline;
}


/*-- ADMONITIONS -- */

.admonition.endpoints, .admonition.request, .admonition.response {
  background: #40464D;
  color: white;
  width: 35vw;
}
.admonition.endpoints a{
  color: white;
}
.admonition.endpoints .admonition-title, .admonition.request .admonition-title , .admonition.response .admonition-title{
  background: #000;
}

/*endpoints*/
.endpoint{
  font-weight: 600;
}
.get{
  color: #00B388;
}
.post{
  color: #9ACBFF;
}


/*Responses*/
.admonition.response > p:nth-child(2) { 
  color: #28a745;
  font-weight: 800;
  font-size: 1em;  
} 

.admonition.response .highlight .json-collapse {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5em;
}

.admonition.response .highlight .json-collapse.collapsed::after {
content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4em;
  background-image: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.admonition.response .highlight .json-toggle {
  background: none;
  border: none;
  color: var(--md-admonition-link-color);
  cursor: pointer;
  font: inherit;
  padding: 0;
}

img {
  display: block;
  margin: 40px auto;
}

.urn-link{
  color: #aaaaaa;
  font-size: 0.8em;
}