/* Site-specific custom styles */

/* Make sure blog titles that might be truncated show ellipsis */
.box-image-text.blog .content h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Add dotted underline to blog titles to indicate tooltip availability */
.box-image-text.blog .content h4 a, #blog-listing-medium h2 a, .systems h4 a, .col-md-8 h2 a {
  border-bottom: 1px dotted #888;
  cursor: help;
}

/* Custom tooltip styles */
#instant-tooltip {
  position: absolute;
  display: none;
  background-color: rgba(0,0,0,0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 350px;
  z-index: 99999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: opacity 0.2s;
  text-align: left;
  word-wrap: break-word;
}

/* Add arrow to tooltip */
#instant-tooltip:after {
  content: '';
  position: absolute;
  top: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0,0,0,0.9);
} 