/* Contenedor del control Street View */
.leaflet-control-streetview {
  position: relative;
}

/* Botón básico */
.svtool-button {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

/* Estado hover */
.svtool-button:hover {
  background: #8c8c8c;
}

/* Estado activo (modo Street View ON) */
.svtool-button.svtool-active {
  background: #1978cf;
  color: #fff;
}

/* Si quieres que el texto "SV" desaparezca y uses un icono, puedes hacer algo así:
.svtool-button {
  font-size: 0;
}

.svtool-button::before {
  content: "📷";  // o cualquier icono
  font-size: 18px;
}
*/
