/* 딤드 처리 배경 */
.loader-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 반투명 검정 배경 */
    z-index: 9999; /* 스피너보다 낮으면 안 됨 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 로더 */
.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

/* 로테이션 애니메이션 */
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
