/* Custom Styles */
#speech-bubble {
  position: absolute;
  min-width: 100px;
  width: auto;
  height: auto;
  background-color: #272727;
  color: #ffffff;
  border: 2px solid #e2e6ea;
  border-radius: 5px;
  padding: 10px;
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
  transform: translateY(-65px); /* Move the speech bubble up by 80px */
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2); /* Modified box-shadow property */
}

#close-button {
  margin-left: 10px;
  cursor: pointer;
  color: #ffffff;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

#speech-bubble-header {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.clickable-text {
  cursor: pointer;
}
