/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 27 2026 | 12:59:34 */
.container {
  padding: 100px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-trigger {
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s;
}

.tooltip-trigger:hover {
  border-color: #6366f1;
}

/* Tooltip Box */
.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  width: 400px;
  padding: 16px;
  background: #374151;
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
  z-index: 10;
}

/* Link Styling */
.read-more {
  display: inline-block;
  margin-top: 8px;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Keeps tooltip open when hovering over the tooltip itself */
.tooltip-wrapper:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}

/* The Arrow */
.tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}