.code-block {
    overflow-x: auto;
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE / old Edge */
}

.code-block::-webkit-scrollbar {
    display: none;              /* Chrome, Safari, Edge */
}

.scroll-indicator {
    position: fixed;
    top: 50;
    right: 40px;        /* close to the edge */
    width: 2px;
    height: 100vh;
    background: #555;
    opacity: 0.6;
    pointer-events: none;
    z-index: 9999;
}

.table {
    margin-right: 100px;
}

.row {
    font-size: 14px;
    line-height: 20px;
    color: #969592;
}

.col-lg-4{
    margin-left: 0px;
}

.main-column {
    padding-left: 30px;
    padding-bottom: 500px;
}

@media(max-width: 575px) {
    .main-column{
        padding: 15px;
    }
}

.tables {
    width: 95%;
    /* height: 500px; */
}

@media(max-width: 575px) {
    .tables {
        width: 100%;
    }
}

.tables tr td{
    font-size: 15px;
    line-height: 21px;
}

.cards-div {
    background-color: #1B1913;
    margin-right: 60px;
}

@media(max-width: 575px) {
    .cards-div {
        width: 100%;
    }
}

.cards-div:hover{
    border: none;
}

.cards-div code {
    color: #98D6FF;
    padding-left: 20px;
    font-family: "Liberation Mono", "Courier New",;
    /* padding: 0px; */
}

.list-unstyled .list {
    position: relative; /* needed for pseudo element positioning */
    padding-left: 1em;  /* space for the bullet */
    /*margin-bottom: 0.5em;  spacing between items */
}


.list-unstyled .list::before {
    content: "";
    position: absolute; /* absolute relative to li */
    left: 0;            /* place bullet at the start */
    top: 0.6em;         /* vertical alignment, tweak as needed */
    width: 0.3em;       /* bullet width */
    height: 0.3em;      /* bullet height */
    background-color: #6B6965;
    border-radius: 0;   /* keep it square */
}

.code-block {
    background: #1B1913;
    color: #98D6FF;
    padding: 5px;
    border-radius: 5px;
    overflow-x: auto;
    /* font-family: monospace; */
    counter-reset: line;
    line-height: 0.5;
    margin-right: 60px;
    border: 0.5px solid #6B6965;
}

.code-block span i {
    color: #6B6965;
}


.code-block span .white-color {
    color: white;
    font-style: normal;      /* keep non-italic */
    display: inline;         /* ensure it stays inline */
    vertical-align: baseline;/* aligns with the rest of the text */
    line-height: inherit;    /* match parent line-height */
}

.code-block span .keyword{
    color: orangered;
    font-style: normal;
} 


@media(max-width: 575px) {
    .code-block {
        width: 100%;
    }
}

.code-block span {
    display: block;
    padding-left: 4em;
    position: relative;
    line-height: 0.5;
    margin: 0;
}

.code-block span::before {
    counter-increment: line;
    content: counter(line);
    position: absolute;
    left: 0;
    width: 2.5em;
    text-align: right;
    color: #6B6965;
}

h2 {
    font-size: 18px;
    line-height: 27px;
}

hr {
    margin-right: 60px;
}
