.custom-tooltip {
  position: absolute;
  background: #fafdff;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  max-width: 350px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  display: none;
  pointer-events: auto;
}

.custom-tooltip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent rgba(50, 50, 50, 0.95) transparent transparent;
}

.tooltip-content {
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #d4c8c8;
}

.tooltip-icon {
  display: flex;
  width: 140px;
  height: 140px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tooltip-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  align-self: stretch;
}

.tooltip-title {
  align-self: stretch;
  color: #323030;
  font-family: "Rubik";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  margin: 0;
}

.tooltip-text {
  align-self: stretch;
  color: #7a7a7a;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}
