/* 플로팅 컨테이너 */
.ft_status_wrap {
    width: 200px;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 230px; /* 너비 확장 */
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow_lg);
    z-index: 9999;
    overflow: hidden;
    border: 1px solid #e9eff5;
}

/* 헤더: 라이브 표시 */
.ft_status_header {
    background: #f8fafd;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #e9eff5;
}

.ft_live_dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    margin-right: 5px;
    animation: ft_pulse 1.5s infinite;
}

@keyframes ft_pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* 스크롤 영역 */
.ft_status_body {
    height: 550px; /* 45px * 10줄 = 450px */
    overflow: hidden;
    position: relative;
    padding: 0 12px;
    background-color: var(--white);
}

.ft_scroll_list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: calc(100% - 20px);
    transition: top 0.6s ease-in-out;
}

.ft_item {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px; /* 요소 간 간격 */
    border-bottom: 1px dashed var(--gray_ee);
    padding: 0 4px;
}

/* 상호 + 번호를 감싸는 박스 */
.ft_info {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    justify-content: center;
    flex: 1;
    min-width: 0;
    line-height: 1.3; /* 줄 간격 좁게 */
}
/* 상호명 스타일: 길어지면 ... 처리 */
.ft_store {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gray_3);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px; /* 번호와의 간격 */
}
/* 전화번호: 항상 노출 */
.ft_phone {
    display: block;
    color: var(--gray_7);
    font-size: 11px; /* 번호는 조금 더 작게 */
    flex-shrink: 0;
}
/* 칩 스타일 고정 */
.ft_item .badge {
    flex-shrink: 0;
    min-width: 60px;
    padding: 5px !important;
    text-align: center;
    font-size: 12px !important;
}
/* 하단 버튼 */
.ft_status_btn {
    display: block;
    background: var(--light_point);
    color: var(--white) !important;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.ft_status_btn:hover { background: var(--dark_point); }

/* 모바일 숨김 (선택사항) */
@media (max-width: 1024px) {
    .ft_status_wrap { display: none; }
}