/**
 * Sakana! Widget — theme-reset protection.
 *
 * Many WordPress themes ship CSS like:
 *   canvas, img { max-width: 100%; height: auto; }
 * which distorts the widget's canvas (clipping the spring rod) and makes the
 * character look off / drag feel stiff. These rules shield the widget from it.
 */

.sakana-widget-app canvas {
	max-width: none !important;
	max-height: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
}

.sakana-widget-app img,
.sakana-widget-app svg {
	max-width: none !important;
	box-shadow: none !important;
	border: 0 !important;
}
