/* 공통 토스트 박스 크기 / 패딩 / 폰트 */
.jq-toast-single {
    font-size: 14px;           /* 본문 폰트 */
    font-weight:600;
    font-family: Noto Sans KR;
}

/* 헤더(heading) 폰트 사이즈만 별도 조정 */
.jq-toast-heading {
    font-size: 16px;
    font-weight: 700;
}

.jq-toast-wrap {
    /*width: 300px;*/
    width: auto;
}

/* 모바일에서 너무 넓게 안 퍼지게 하고 싶으면 */
@media (max-width: 480px) {
    .jq-toast-single {
        width: calc(100vw - 32px);  /* 양옆 16px 여백 */
        max-width: none;
        font-size: 12px;
    }
}