p.caption {
  color: #777;
  margin-top: 10px;
}
p code {
  white-space: inherit;
}
pre {
  word-break: normal;
  word-wrap: normal;
}
pre code {
  white-space: inherit;
}

img {
  border: 1px solid black;
  background-color: #f0f0f0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  width: 100%; 
  height: auto; 
}

.icon {
  border: none;
  background-color: none;
  box-shadow: none;
  width: 3%; 
  height: auto; 
}

.remove-feature {
  color: red;
  font-weight: bold;
}

.add-feature {
  color: green;
  font-weight: bold;
}

.change-feature {
  color: orange;
  font-weight: bold;
}

.discuss-feature {
  color: aquamarine;
  font-weight: bold;
}

.future-feature {
  color: silver;
  font-weight: bold;
}

# Q&A

.question {
    font-weight: bold;
}
.answer {
    margin-bottom: 10px;
}

.numbered {
    display: none;
}

# Definitions
.term {
    font-weight: bold;
}

.term-label {
    color: blue;
}

.term-description {
    color: green;
}

.vocabulary {
    background-color: yellow;
    font-weight: bold;
}

<div class="term">
    <span class="term-label">Council Training Committee</span>
    <span class="term-description">The Juniata Vally Council Training Committee</span>
</div>

<script>
    $(document).ready(function() {
        $('.term').hover(function() {
            // Get the definition from the 'title' attribute
            var definition = $(this).attr('title');
            // Create a tooltip element and position it
            $('<div class="tooltip"></div>')
                .text(definition)
                .appendTo('body')
                .css({
                    top: $(this).offset().top - 30,
                    left: $(this).offset().left
                })
                .fadeIn('fast');
        }, function() {
            // Remove the tooltip when the mouse leaves the element
            $('.tooltip').remove();
        });
    });
</script>

