/* 服务器状态组件样式 */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #f5f7fa;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    font-family: "Microsoft YaHei", sans-serif;
    /* 可选：加个阴影更精致 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 状态圆点（默认绿色） */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
    /* 呼吸动画，和示例一致的动态效果 */
    animation: pulse 2s infinite ease-in-out;
}

/* 呼吸动画 */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* 不同状态的颜色 */
.status-dot.busy { background: #dc3545; } /* 红色-繁忙 */
.status-dot.maintenance { background: #ffc107; } /* 黄色-维护 */