.markdown {
    max-width: 800px;
}

.blog-list-title {
    text-align: center;
}

.blog-post h2 {
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    font-weight: 900;
    text-align: left;
}

.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-table-wrap {
    width: 100%;
    margin: 1.25rem 0 2rem;
    overflow-x: auto;
    border: 1px solid #d8e1ee;
    border-radius: 10px;
    background: white;
    box-shadow: 0 8px 24px rgba(18, 40, 72, 0.08);
    -webkit-overflow-scrolling: touch;
}

.markdown-table-wrap:focus {
    outline: 3px solid rgba(64, 116, 189, 0.35);
    outline-offset: 3px;
}

.markdown table {
    width: 100%;
    min-width: 760px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.45;
}

.markdown th,
.markdown td {
    padding: 0.85rem 0.9rem;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
    overflow-wrap: break-word;
    word-break: normal;
}

.markdown th:last-child,
.markdown td:last-child {
    border-right: 0;
}

.markdown tbody tr:last-child td {
    border-bottom: 0;
}

.markdown thead th {
    background: #eef5ff;
    font-weight: 700;
}

.markdown tbody tr:nth-child(even) {
    background: #f8fafc;
}

.markdown tbody tr:hover {
    background: #f2f7fd;
}

.markdown th:nth-child(1),
.markdown td:nth-child(1) {
    width: 14%;
    font-weight: 700;
}

.markdown th:nth-child(2),
.markdown td:nth-child(2) {
    width: 17%;
}

.markdown th:nth-child(3),
.markdown td:nth-child(3),
.markdown th:nth-child(4),
.markdown td:nth-child(4) {
    width: 34.5%;
}

.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; 
}
