* {
    -webkit-touch-callout: none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

@media (min-width: 1024px) {
    body {
        margin-left: 20%;
        margin-right: 20%;
    }
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: rgb(239, 239, 244);
    /* margin: 0; */
}
h1, h2, h3 {
    color: #333;
}
p {
    margin: 15px 0;
}
ol {
    margin: 20px 0;
    padding-left: 20px;
}
li {
    margin: 5px 0;
}
.article {
    margin-bottom: 30px;
}
h1 {
    line-height: 36px;
}
.table-wrapper {
    width: 100%;
    overflow-x: auto; /* 가로스크롤 추가 */
    margin: 20px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}
/* 다크 모드 설정: 시스템 다크 모드일 때 */
@media (prefers-color-scheme: dark) {
body {
    background-color: rgb(23, 23, 23);
    color: #e0e0e0; /* 밝은 텍스트 색상 */
}

h1, h2, h3 {
    color: #e0e0e0;
}

p {
    color: #b0b0b0;
}

ol {
    color: #b0b0b0;
}

h1 {
    line-height: 36px;
}
}