#localWan .bookmark-description {
  color: rgb(175, 143, 143) !important;
  /* background-color: rgba(86, 86, 86, 0.1) !important;  Light red background */
}
#localWan:hover {
  opacity: 0.8 !important;  /* Fade on hover */
}

#localLan .bookmark-description {
  color: rgb(162, 162, 127) !important;
}
#localLan .bookmark-description:hover {
  text-decoration: underline !important;  /* Underline on hover */
  text-decoration-style: double;
}

#tailScale .bookmark-description {
  color: rgb(207, 133, 42) !important;
}
#tailScale .bookmark-description:hover {
  text-decoration: underline !important;  /* Underline on hover */
  text-decoration-style: double;
}

/* Hide TrueNAS pool information by default */
[data-name="TrueNAS"] .service-tags,
[data-name="TrueNAS"] .widget-content > *:not(:first-child) {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

/* Show TrueNAS pool information on hover */
[data-name="TrueNAS"]:hover .service-tags,
[data-name="TrueNAS"]:hover .widget-content > *:not(:first-child) {
  opacity: 1;
  max-height: 500px;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}