/**
    개발용 costom css / 동적 로딩을 위함.
 */
.text-block-600 {display: block;font-size: inherit;font-weight: 600;color: #2d57b6;}

.flex-center-gap-68{ display: flex; align-items: center; gap: 68px;}

.text-blue-inherit{font: inherit;color: #2d57b6;}

.cursor-pointer{
    cursor: pointer;
}

/* Toast 스타일 */
 .toast {
     display: none;
     position: fixed;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     background-color: #333;
     color: #fff;
     padding: 12px 16px;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     z-index: 10000;
 }