/* Connectivity Indicator */
.connectivity-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

.connectivity-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.connectivity-indicator--online {
  background-color: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.connectivity-indicator--offline {
  background-color: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}

.connectivity-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.connectivity-switch input[type="checkbox"] {
  position: relative;
  width: 36px;
  height: 20px;
  appearance: none;
  background-color: #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.connectivity-switch input[type="checkbox"]:checked {
  background-color: #22c55e;
}

.connectivity-switch input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.connectivity-switch input[type="checkbox"]:checked::before {
  transform: translateX(16px);
}
