

.big-container {
    display: flex;
    gap: 2rem;
}

.big-container>* {
    overflow-x: auto;
}

#sidebar ul {
    padding: .5rem !important;
    gap: 0;
}

#sidebar li {
    list-style: none;
    border-radius: 4px;
}

#sidebar a {
    color: #444;
    font-size: .94rem;
    text-decoration: none;
    display: block;
    padding: 2px 6px;
    margin: 2px 0;
}

#sidebar>li>a {
    color: black;
    font-weight: 600;
    font-size: 1.05rem;
}

#sidebar li.active {
    background-color: white;
    border-left: 3px solid var(--color-primary);
    padding-left: 7px;
}


section:last-child {
    margin-bottom: 0;
}

code {
    padding: 4px;
    border-radius: 5px;
    background-color: #f1f1f1;
    color: black !important;
}



ul li {
    list-style-type: disc;
}

ol li {
    list-style-type: decimal;
}

.content-container a {
    color: var(--color-primary) !important;
}

.content-container a:hover {
    color: var(--color-primary) !important;
}

blockquote {
    color: #444;
    padding-left: 1rem;
    margin-left: 2rem !important;
    border-left: 4px solid #ddd;
}

pre {
    background-color: #f1f1f1;
    border-radius: 5px;
}


th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    line-height: 1.4;
}

tr:nth-of-type(even) {
    background-color: #f5f5f5;
}

.code-example ul {
    padding: 0 !important;
    flex-direction: row;
    gap: 7px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.code-example ul li {
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 0 8px;
    cursor: pointer;
}

.code-example ul li.active {
    background-color: #000;
    cursor: default;
}

.code-example ul li a {
    display: flex;
    gap: 10px;
    color: #555 !important;
    pointer-events: none;
}

.code-example ul li a:hover {
    color: #555 !important;
}

.code-example ul li.active a {
    color: #fff !important;
}

h5,
h6 {
    font-weight: 700 !important;
    margin: 1.5rem 0 1rem !important;
}

h5 {
    font-size: 1.3rem !important;
}

h6 {
    font-size: 1.1rem !important;
}

b {
    margin-bottom: 1rem !important;
    display: inline-block;
}