/* @tomickigrzegorz/leaflet-rotate — control theme. Import only if you use the controls. */
:root {
  --lrc-control-bg: #fff;
  --lrc-control-hover: #f4f4f4;
  --lrc-control-size: 30px;
}
.leaflet-control-rotate { background: var(--lrc-control-bg); }
.leaflet-control-rotate a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--lrc-control-size);
  height: var(--lrc-control-size);
  cursor: pointer;
}
.leaflet-control-rotate a:hover { background: var(--lrc-control-hover); }
.leaflet-control-rotate--inactive a svg { filter: grayscale(1); }
