.custom-chart-wrap {
    position: relative;
    height: 350px;
    width: 100%;
    margin-top: 32px;
}

h2 {
    font-family: 'Malgun Gothic', sans-serif;
    font-size: 18px;
    margin: 0;
    color: #333;
}

.chartjs-tooltip {
    opacity: 0;
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 16px;
    pointer-events: none; /* 툴팁이 마우스 이벤트를 방해하지 않게 함 */
    transition: all .1s ease;
    box-shadow: 0px 0px 10px 0px #0000001F;
    border: 1px solid #D9DEE7;
    z-index: 100;
    /* width: 180px; */
    white-space: nowrap;
}

/* 툴팁 내부 스타일 */
.tooltip-title { margin-bottom: 12px; color: #242933; font-size: 16px; line-height: 24px;}
.tooltip-body { display: flex; align-items: center; gap: 8px; }
.tooltip-dot { width: 16px; height: 16px; border-radius: 50%; background: #056140; }
.tooltip-label { font-size: 14px; line-height: 22px; color: #667085; margin-right: 12px; }
.tooltip-value { font-size: 14px; line-height: 22px; color: #0F131C; font-weight: 500; }
.tooltip-index-0 { margin-bottom: 8px; }