/*
 * CSS styling for "servicemusic.org.uk"
 * -- David Lee
 *
 * Added: 2026/Feb, primarily to indicate background derivation of tune names
 *
 */


/*
 * *** Tooltip ***
 *
 * From: https://www.w3schools.com/css/css_tooltip.asp
 *
 */

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* Add dots under the hoverable text */
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 130px;
  background-color: black;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
