:root {
    --dt-wiki-content-a-color: #c58af9;
    --lt-wiki-content-a-color: #ff5151;
}

/* Custom style for tag */
.article-page{
    margin: 0 15px;
}
.article-page img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.article-page iframe {
    max-width: 100%;
}
.article-page a{
    text-decoration: none;
    color: var(--lt-wiki-content-a-color);
}
.article-page .theorycft-img{
    max-width: 700px;
    width: 80dvw;
}
.article-page code{
    font-family: math, 'Courier New', monospace;
    font-size: 14px;
    color: #333;
    background-color: #f8f8f8;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}
.article-page p {
    margin-bottom: 1em;
}
.article-page ul, .article-page ol {
    margin-bottom: 1em;
}
.article-page li {
    margin-bottom: 0.5em;
}
.article-page blockquote {
    margin: 0 0 1em;
    padding: 0 1em;
    border-left: 2px solid #ccc;
}
.article-page strong, .article-page b {
    font-weight: bold;
}
.article-page em{
    font-style: italic;
}
.article-page pre {
    font-family: 'Courier New', monospace;
    background-color: #f8f8f8;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}

.article-page .article {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    border: solid black 1px;
}
.article-page .dot {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}
.article-page .dot img {
    object-fit: contain;
}

.article-page .article.spoiler{
    background-color: aliceblue;
}

.article-page .article-new-box {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
	margin-bottom: 40px;
}
.article-page .is-primary {
	background-color: #336699;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
}
.article-page .article-new-body {
	text-align: center;
}
.article-page .article-new-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}
.article-page .article-new-subtitle {
	font-size: 14px;
	margin-bottom: 20px;
}
.article-page .article-new-content {
	margin-bottom: 20px;
}
.article-page .article-new-content p {
	margin-bottom: 10px;
}

/* Darkmode part */
.body_dark_mode .article-page .article {
    background: #545454a8;
    border: solid black 1px;
}
.body_dark_mode .article-page .article.spoiler{
    background-color: #565656;
}
.body_dark_mode .article-page a{
    text-decoration: none;
    color: var(--dt-wiki-content-a-color);
}
/* ARTICLE NEW */
.body_dark_mode .article-page .article-new-box {
    background-color: #252525;
}
.body_dark_mode .article-page .is-primary {
    background-color: #474b50;
    color: rgb(220, 221, 222);
}
.body_dark_mode .article-page .article-new-body {
    text-align: center;
    color: rgb(220, 221, 222);
}
.body_dark_mode .article-page .article-new-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.body_dark_mode .article-page .article-new-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}
.body_dark_mode .article-page .article-new-content {
    margin-bottom: 20px;
    color: rgb(220, 221, 222);
}
.body_dark_mode .article-page .article-new-content p {
    margin-bottom: 10px;
}
.body_dark_mode .article-page code{
    color: #ccc;
    background-color: #545454;
    border: 1px solid transparent;
}
.body_dark_mode .article-page pre {
    background-color: #545454;
}