﻿.boot-wait {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 16px/1.4 system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    color: #333;
}

/* 선택: 로딩 스피너 */
.boot-wait::before {
    content: "";
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,.1);
    border-top-color: #2d71c4;
    animation: sp 0.8s linear infinite;
}


/* 헤더 전체 높이를 절반 수준으로 */
.sb-prog-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    height: 38px; /* 기존 대비 축소 */
    padding: 0 10px;
    background: #2d71c4; /* 청색 */
    color: #fff;
}

/* 제목: 데스크톱은 약간 크게, 모바일은 조금 작게 */
.sb-prog-title {
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 기본값(모바일 기준) */
    font-size: 15px;
}

/* 데스크톱에서만 좀 더 키움 */
@media (min-width: 821px) {
    .sb-prog-title {
        font-size: 17px;
    }
    /* “조금 크게” */
}

/* MENU 버튼은 모바일에서 숨김 */
.desktop-only {
    display: none;
}

@media (min-width: 821px) {
    .desktop-only {
        display: inline-flex;
    }
}

.sb-prog-menu-btn {
    border: 0;
    border-radius: 6px;
    padding: 4px 10px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

    .sb-prog-menu-btn:hover {
        background: rgba(255,255,255,.25);
    }



@keyframes sp {
    to {
        transform: rotate(360deg);
    }
}
