.newContactInputs,
.newContactInputs > div,
.courtDateTimeInputContainer {
  gap: 1rem;
}

.askAiMY-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 3px;
  position: absolute;
  top: 3px;
  right: 0;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltipHoverable:hover {
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: hsl(206, 70%, 96%);
  color: #3e8ed0;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  position: absolute;
  top: 125%;
  right: 0%;
  z-index: 1;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 50px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #3e8ed0 transparent;
}
