.docs-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}
.docs-content {
    flex: 1;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    contain: layout style paint;
    width: calc(100% - 400px);
}
.docs-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}
.docs-title {
    font-size: 40px;
    font-weight: bold;
    /* color: #1a1a1a; */
}
.docs-subtitle {
    margin: .5rem 0 0;
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 400;
}
.folder-title {
    font-weight: bold;
}
.docs-section {
    margin-bottom: 3rem;
    contain: layout style paint;
}
.content-inner {
    margin: 0 auto;
    position: relative;
    padding: 0.5vh 3vh;
}
#back-to-top-btn{
    position: fixed;
    z-index: 99;
    bottom: 100px;
    padding: 0;
    right:30px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    background-color: white;
    border-radius: 100%;
    box-shadow: 0 0 1px 0 #6bd6e6, 0 1px 10px 0 #6bd6e6b3;
}
#back-to-top-btn img {
    width: 40px;
}
#back-to-top-btn:hover{
    box-shadow: 2px 2px 10px 4px rgba(0,103,237,0.301);
}
#downdloadFile {
    cursor: pointer;
}
#back-to-top-btn svg path {
    fill: black;
}

.anchor-link {
    display: none;
    margin-left: .5rem;
    color: #aaa;
    font-size: .8em;
    vertical-align: middle
}
 
pre[class*="language-"]>code {
    text-wrap: auto;
}

pre[class*="language-"] {
    display: flex;
    flex-direction: column;
}

.caret-right {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid;
    transition: transform 0.3s ease;
    margin-right: 0.5vh;
}

div[aria-expanded="true"] .caret-right {
    transform: rotate(90deg);
}
