

body {
    /* 폰트 */
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* 모바일에서 특정 요소의 negative margin 등으로 인해 가로 스크롤이 생기는 것 방지 */
html {
    overflow-x: hidden;
}

/* 라이트모드 배경 커스텀 */
/* body {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(255, 255, 255, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(255, 255, 255, 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: #fff var(--tw-gradient-to-position);
    --tw-text-opacity: 1;
} */

/* 다크모드 배경 커스텀 */
/* body.color_scheme_dark {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #1a1a1a var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(30, 30, 30, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgba(30, 30, 30, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #09090b var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: #1a1a1a var(--tw-gradient-to-position);
    --tw-text-opacity: 1;
} */


.rhymix_content > p > img {margin: 0 auto;} /* 본문내 이미지 중간정렬 */
.rhymix_content img + img,
.rhymix_content p + p > img {
  margin-top: 6px;
}
.rhymix_content > p > video {margin: 0 auto; width: 70%;} /* 본문내 동영상 중간정렬, 너비설정 */

/* PC 스크롤바 색상 커스텀 (Chrome/Edge/Safari) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}
body.color_scheme_dark::-webkit-scrollbar-thumb {
    background-color: #3f3f46;
}
body.color_scheme_dark::-webkit-scrollbar-thumb:hover {
    background-color: #52525b;
}

/* PC 스크롤바 색상 커스텀 (Firefox) */
html {
    scrollbar-color: #c1c1c1 transparent;
}
body.color_scheme_dark {
    scrollbar-color: #3f3f46 transparent;
}

/* 안내창(swal) 텍스트 중앙 정렬 */
.swal-text {
    text-align: center;
}

/* 읽은 게시물 표시 (브라우저 방문 기록 기반) */
.v-list-title:visited {
    color: #94a3b8 !important;
}
body.color_scheme_dark .v-list-title:visited {
    color: #52525b !important;
}