html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: justify;
}

.header {
    background-color: #032D60;
    padding: 1.5rem 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
}

.options {
    color: white;
    display: flex;
    gap: 2rem;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    overflow: hidden;
    height: calc(100vh - 100px);
}

nav a {
    display: block;
    margin: 8px 0;
    text-decoration: none;
    color: #22337A;
    font-family: sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
    margin-left: 2rem;
}

nav a:hover {
    text-decoration: underline;
}

.index-section {
    overflow-y: auto;
    background-color: #e9f6fe;
}

.child-container {
    padding: 3rem 2rem;
}

.verson-info {
    font-family: sans-serif;
    color: #22337A;
    font-weight: 500;
    font-size: 40px;
}

.heading {
    color: #22337A;
    font-family: sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 41px;
    margin-top: 4rem;
}

.data-container {
    overflow-y: auto;
}

hr {
    border: .5px solid #DCE8FF;
    margin: 1.4rem 0rem;
}

.info-text {
    color: #000;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 200;
}

.snippet-text {
    background-color: #EAF6FE;
    color: #22337A;
    padding: 1rem;
    white-space: pre-wrap; 
    word-wrap: break-word;
}

.object-table th {
  background-color: #a9c5f2;
  font-weight: bold;
  text-align: center;
}

table th {
    text-align: center;
    white-space: nowrap;
}

h4 {
    font-family: sans-serif;
}

li {
    padding: 10px;
    font-family: sans-serif;
}

.image-style {
    width: 100%;
}


table {
    border-collapse: collapse;
    width: 80%;
    margin-top: 20px;
    font-family: sans-serif;
}

th, td {
    border: 1px solid #999;
    text-align: left;
    padding: 10px;
    font-family: sans-serif;
}

th {
    background-color: #f2f2f2;
}

strong {
    font-family: sans-serif;
}

.code-block {
            background-color: #f4f4f4;
            border-radius: 15px;
            padding: 20px;
            
            margin-top: 10px;
            font-size: 16px;
            color: #22337A;
            font-family: Roboto;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            /* white-space: pre-wrap; */
 }

 .lang-label {
            font-size: 14px;
            color: #555;
            margin-bottom: 5px;
            font-family: sans-serif;
}

.http-header{
    border-bottom: 3px solid #6446b5;
}

.http_method {
    color: #1b823c;
}


.subsection {
    margin-left: 1.5rem;
    font-size: 0.95em;
}

.subsection a {
    color: gray;
    text-decoration: none;
}

.subsection a:hover {
    text-decoration: underline;
}
