/* 상태 표시줄 스타일 (이전 대비 3/4으로 추가 축소) */
#status-indicator {
    position: fixed;
    top: 11px;           /* 15px * 0.75 */
    right: 11px;         /* 15px * 0.75 */
    padding: 5.5px 11px;   /* 7.5px 15px * 0.75 */
    border-radius: 28px;   /* 37.5px * 0.75 */
    font-size: 9px;      /* 약 0.56rem, 가독성을 고려한 최소 크기 */
    font-weight: bold;
    color: white;
    z-index: 1000;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1); /* 그림자도 더 가볍게 */
}

/* 온라인 상태 색상 */
.online {
    background-color: #2ecc71;
}

/* 오프라인 상태 색상 */
.offline {
    background-color: #e74c3c;
}