*::-webkit-scrollbar {
    width: 8px;  /* 스크롤바의 너비 */
    height: 8px;

}

*::-webkit-scrollbar-thumb {
    height: 8px; /* 스크롤바의 길이 */
    background: rgba(33, 122, 244, .5); /* 스크롤바의 색상 */
    border-radius: 2rem;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(33, 122, 244, 1); /* 스크롤바의 색상 */
}

*::-webkit-scrollbar-track {
    background: rgba(33, 122, 244, .1);  /*스크롤바 뒷 배경 색상*/
    border-radius: 2rem;
}

.react-grid-item.react-grid-placeholder {
    border-radius: 0.5rem!important;
    background: rgba(0, 0, 0, 0.50)!important;
    filter: blur(8px) !important;
}