/* 标签选择器样式 */
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  color: #9ca3af;
  white-space: nowrap;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.tab-btn.active {
  background: linear-gradient(135deg, 
    rgba(200, 70, 194, 0.2) 0%, 
    rgba(200, 70, 194, 0.1) 100%);
  color: #c846c2;
  border: 1px solid rgba(200, 70, 194, 0.3);
  box-shadow: 
    0 4px 12px rgba(200, 70, 194, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.tab-icon {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.tab-btn:hover .tab-icon {
  transform: scale(1.1);
}

.tab-btn.active .tab-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(200, 70, 194, 0.3));
}

.tab-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

@media (max-width: 640px) {
  .tab-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
  .tab-icon {
    font-size: 0.875rem;
  }
}

/* 状态指示器 */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-warning {
  background: rgba(200, 70, 194, 0.1);
  color: #c846c2;
  border: 1px solid rgba(200, 70, 194, 0.2);
}

/* 脉冲动画 */
