/* Additional css file for bibtex citation handling */
/* BibTeX block styling */
.bibtex-block { 
  margin-top: 10px !important;    /* 겹침 방지 핵심 */
  max-width: 100%;
}

.bibtex-block .blockcontent {
  margin-left: 0 !important;      /* 네 기존 유지 */
  max-width: 100%;
  overflow-x: auto;          /* 가로 넘치면 이 영역에서만 스크롤 */
  -webkit-overflow-scrolling: touch;
}

.bibtex-block pre {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
  line-height: 1.2;

  /* 핵심: 화면 폭을 밀지 않게 */
  max-width: 100%;
  overflow-x: auto;          /* pre 자체도 안전장치 */
  white-space: pre-wrap;     /* 줄바꿈 허용 (가로 폭 방지) */
  word-break: break-word;    /* 아주 긴 토큰도 깨기 */
  overflow-wrap: anywhere;   /* DOI/URL 같은 긴 문자열도 깨기 */
}

.codeblock[style*="none"] {
    margin: 0 !important;
    padding: 0 !important;
    height: 0;
    border: none !important;
    overflow: hidden !important;
}

/* (선택) 모바일에서 들여쓰기 40px이 너무 크면 줄이기 */
@media (max-width: 800px) {
  .bibtex-block .blockcontent { margin-left: 40px; }
}