.hi-dot-wrapper {
  position: absolute;
  z-index: 10;
}

.hi-dot {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  overflow: visible;
}

/* Dalga efekti */
.hi-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 1.5s infinite ease-out;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

/* Modal kutusu */
.hi-modal {
  position: absolute;
  top: 24px;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: none;
  width: 300px;
height:auto;
  z-index: 999;
}

/* Hover ile modalı aç */
.hi-dot-wrapper:hover .hi-modal {
  display: block;
}

/* Modal içeriği */
.hi-modal-content h3 {
  margin-top: 0;
  font-size: 16px;
}

.hi-modal-content p {
  margin: 6px 0;
  font-size: 14px;
}

.hi-modal-content a {
  display: inline-block;
  margin-top: 6px;
  color: #007cba;
  text-decoration: underline;
  font-size: 13px;
}

/* Mobil uyumlu düzenleme */
@media screen and (max-width: 600px) {
  .hi-modal {
    left: auto;
    right: 0;
    top: 28px;
    font-size: 14px;
    width: auto;
    max-width: 90vw;
  }

  .hi-modal-content h3 {
    font-size: 15px;
  }

  .hi-modal-content p,
  .hi-modal-content a {
    font-size: 13px;
  }
}

.hi-modal-content {
  font-family: 'DM Sans', sans-serif;
font-synthesis: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
