/* transactions.css */

/*
#transactions-container div.well {
  display: none;
}
*/

.visualization text {
  font: 12px sans-serif;
}

.visualization svg {
  display: block;
}

.visualization svg {
/*  height: 200px;*/
  min-width: 100px;
  min-height: 100px;
/*
  margin: 10px;
  Minimum height and width is a good idea to prevent negative SVG dimensions...
  For example width should be =< margin.left + margin.right + 1,
  of course 1 pixel for the entire chart would not be very useful, BUT should not have errors
*/
}

.visualization-piechart svg {
width: 100%;
/*  height: 500px; */
}

.visualization-barchart svg {
  height: 500px;
}

.visualization-barchart .nv-y {
  display: none;
}

.legend-color {
  width: 20px;
  height: 7px;
  border: 1px solid #444444;
  display: inline-block;
}

.list-unstyled > .list-unstyled {
  margin-left: 20px;
}

:target {
   background-color: #ffa !important;
}
