.markdown {
    max-width: 800px;
}

.markdown h1 {
    text-align: center;
}

.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
    text-align: left;
}

.markdown h2 {
    margin-bottom: 0;
    margin-top: 2rem;
    position: relative;
}

.markdown h2:before {
    content: '';
    background: var(--main-color);
    position: absolute;
    width: 5px;
    height: 100%;
    left: -10px;
    top: 0;
}

.markdown ul {
    list-style-position: inside;
}

.markdown blockquote {
    background: #fafafa;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 10px 5px 35px;
    position: relative;
    overflow: hidden;
}

.markdown blockquote:before,
.markdown blockquote:after {
    content: '“';
    position: absolute;
    left: 5px;
    top: 10px;
    line-height: 50px;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

.markdown blockquote:after {
    content: '”';
    left: initial;
    top: initial;
    line-height: 0px;
    bottom: 0px;
    right: 0px;
}

.markdown img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
}

.markdown img + code {
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.markdown code {
    background: #313c51;
    color: white;
    padding: 5px;
    border-radius: 3px;
    display: inline-block;
    width: 100%;
    overflow: auto;
}

.markdown ul {
    list-style-position: inside;
    list-style: none; /* remove default bullets */
    padding-left: 0em; /* leave space for custom bullets */
}

.markdown ul li {
    position: relative;
    padding-left: 1em;
}

.markdown ul li::before {
    content: '•'; /* Unicode bullet or use an emoji like '⭐' */
    position: absolute;
    left: 0;
    color: var(--main-color); /* use your theme color */
    font-weight: bold;
    font-size: 1.4em;
    line-height: 1.1; 
}