/* MCP Icon Style - Make the chain icon lighter with thinner strokes */

/* Target the MCP settings button SVG */
button[aria-describedby*="2u"] svg,
button svg[viewBox="0 2 195 195"],
svg[width="195"][height="195"] {
  /* Make strokes thinner */
  stroke-width: 6 !important; /* Original is 12, cutting in half */
}

/* All paths inside MCP icon */
button[aria-describedby*="2u"] svg path,
button svg[viewBox="0 2 195 195"] path,
svg[width="195"][height="195"] path {
  stroke-width: 6 !important;
}

/* When the button is in collapsed sidebar */
[data-collapsed="true"] button svg[viewBox="0 2 195 195"],
[data-collapsed="true"] svg[width="195"][height="195"] {
  stroke-width: 6 !important;
}

[data-collapsed="true"] button svg[viewBox="0 2 195 195"] path,
[data-collapsed="true"] svg[width="195"][height="195"] path {
  stroke-width: 6 !important;
}








