/*
    To display a link with overlay menu
*/

.download-menu {
  position: relative;
  cursor: pointer;
  font-size: 0.9em;
  margin-left: 6px;
}

.download-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
  white-space: nowrap;
  color: black;
}

.download-options a {
  display: block;
  padding: 2px 8px;
  text-decoration: none;
  color: #007bff;
  font-size: 1.00em;
}

.download-trigger {
  border-bottom: 2px dotted #555; /* dotted underline */
  cursor: pointer;                /* show it's interactive */
  padding: 0 2px;
  color:  #007bff;
  font-size: 1.1em;
}

.download-options a:hover {
  background: #f0f0f0;
}

.download-menu:hover .download-options {
  display: block;
}

/*
    To display standard icons
*/


.anomaly-bcg {
  /*color: darkred;*/
  background: #fff0f0;
  background-color: #fff0f0;
}

.transparent-bcg {
  background-color: transparent;
}