/* Small Bubble Modal */
.info-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #222;
  color: #fff;
  border-radius: 20px;
  padding: 20px 21px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;            /* Appear on top */
  
  /* Initially hidden with fade transition */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 10px;
}

.info-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.info-modal-content {
  text-align: center;
  font-size: 0.5rem;
  line-height: 1.4;
}
