.render-content>ol {
    list-style-type: roman;
    padding-left: 20px;
}

.render-content>ul {
    list-style-type: circle;
    padding-left: 20px;
}

.render-content>table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.render-content>table>tbody>tr {
    border-bottom: 1px solid #dddddd;
}

.render-content>table>tbody>tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.render-content>table>tbody>tr:last-of-type {
    border-bottom: 2px solid #a7a7a7;
}

.render-content>table>th,
td {
    padding: 12px 15px;
}

.render-content>table>thead>tr {
    background-color: #a7a7a7;
    color: #ffffff;
    text-align: left;
    padding: 8px;
}

.render-content>table>thead>tr>th {
    padding: 16px;
}

.render-content>blockquote {
    display: block;
    background: #fff;
    padding: 15px 20px 15px 45px;
    margin: 8px 8px 20px;
    position: relative;
    /*Font*/
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    text-align: justify;
    /*Borders - (Optional)*/
    border-left: 15px solid #cfc6bc;
    border-right: 2px solid #cfc6bc;
    /*Box Shadow - (Optional)*/
    -moz-box-shadow: 2px 2px 15px #ccc;
    -webkit-box-shadow: 2px 2px 15px #ccc;
    box-shadow: 2px 2px 15px #ccc;
}

.render-content>h1 {
    font-size: 32pt;
    font-weight: bold;
}

.render-content>h2 {
    font-size: 28pt;
    font-weight: bold;
}

.render-content>h3 {
    font-size: 22pt;
    font-weight: bold;
}

.render-content>h4 {
    font-size: 20pt;
    font-weight: bold;
}

.render-content>blockquote::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: bold;
    color: #999;
    position: absolute;
    left: 10px;
    top: 5px;
}

div.text-white>p {
    color: 'white';
}

html {
    --scrollbarBG: #d8d8d8;
    --thumbBG: #c40000;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 11px;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}