.user-greeting {
    color: #273C6E;
    font-size: 1.1rem;
    line-height: 1.3;
}

/* 모바일일 때 상태 메시지 숨김 */
@media (max-width: 480px) {
    .user-greeting {
        font-size: 0.85rem;
    }

    .user-status-msg {
        display: none;
    }
}

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    width: 350px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
}

.popup-actions {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-actions label {
    font-size: 0.9rem;
    margin-left: 10px;
}

.popup-actions button {
    margin-right: 10px;
}