body {
    background-color: #111;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.markdown-body {
    box-sizing: border-box;
    min-width: 200px;
    max-width: 980px;
    margin: 50px auto 0; /* Increase top margin */
    padding: 45px;
    background-color: #1e1e1e;
}

@media (max-width: 767px) {
    .markdown-body {
        padding: 15px;
    }
}

article {
    background-color: #111;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

h1, h2 {
    color: #61dafb;
    margin-bottom: 20px;
}

h3 {
    color: #61dafb;
    margin-bottom: 25px;
}

a {
    color: #61dafb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.tags-container {
    margin-bottom: 15px;
}

.tags {
    color: #61dafb;
    font-weight: bold;
}
.tag-icon {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #27ae60;
    color: #fff; /* Change to a different text color */
    font-family: 'Verdana', sans-serif; /* Change to the desired font-family */
}

.last-modified {
    color: #777;
    margin-bottom: 15px;
}

.last-modified span {
    font-weight: bold;
}


p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.5;
}

.strong-text {
    font-weight: bold;
    color: #e67e22; /* Change to yellow (hex code for yellow) */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 8px;
}

pre {
    background-color: #1e1e1e;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    overflow: auto;
    margin-bottom: 20px;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #61dafb;
}

iframe {
    max-width: 100%;
}

footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    background-color: #111;
    border-radius: 10px;
}

pre::-webkit-scrollbar,
code::-webkit-scrollbar {
    width: 12px;
}

pre::-webkit-scrollbar-thumb,
code::-webkit-scrollbar-thumb {
    background-color: #61dafb; /* Change to the desired color for the thumb */
    border-radius: 6px;
}

pre::-webkit-scrollbar-track,
code::-webkit-scrollbar-track {
    background-color: #1e1e1e; /* Change to the desired color for the track */
}

/* Optional: Hover effect for the thumb */
pre::-webkit-scrollbar-thumb:hover,
code::-webkit-scrollbar-thumb:hover {
    background-color: #4da1ff; /* Change to the desired color for hover effect */
}

/* List elements formatting */
ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6; /* Improved readability */
}

/* Add styles for list bullets */
ul {
    list-style-type: disc; /* Use a solid circle for unordered lists */
}

ol {
    list-style-type: decimal; /* Use decimal numbers for ordered lists */
}
