.btn_stop {
    padding: 0 25px;
    height: 36px;
	margin-left:7px;
    background: var(--gd_bg);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #fff;
}

.dimm {
    position: fixed;         /* 화면 전체 덮기 위해 absolute → fixed 권장 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: #000;
    opacity: 0.4;
    display: none;           /* 필요할 때 show() */
}

/* 가운데 배치 + 깜빡임 효과 */
.loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    animation: blink 1s infinite;
}

/* 깜빡임 애니메이션 */
@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.2; }
    100% { opacity: 1; }
}
