/* Danger box 개선 */
.md-typeset .admonition.danger,
.md-typeset details.danger {
  border-left: 4px solid #ff4d4f;       /* 더 세련된 레드 */
  background-color: #fff2f0;            /* 옅은 배경 */
}

.md-typeset .admonition.danger > .admonition-title,
.md-typeset details.danger > summary {
  background-color: transparent;        /* 타이틀 배경 제거 */
  color: #cf1322;                        /* 글자색 진한 레드 */
  font-weight: bold;
}
