.cellPositiveValue{
    color: blue;
}
.cellZeroValue{
    color: lightgrey;
}

/*회원가입 페이지 숫자 안보이도록 수정*/
.list-insert > div::before {
    counter-increment: null;
    content: none;
}

.custom-scrollbar-thin {
    overflow: auto;
    scrollbar-width: thin;
}

.custom-scrollbar-none {
    overflow: auto;
    scrollbar-width: none;
}


.scrollable-area {
    max-height: 400px; /* 원하는 높이 설정 */
    overflow-y: auto; /* 세로 스크롤바 추가 */
    overflow-x: hidden; /* 가로 스크롤바 숨김 */
}

.highlight-cell {
    background-color: #ff0 !important; /*배경색을 변경하세요. */
}