.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.tooltip {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 320px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: #fff;
  padding: 20px;
  opacity: 0;
  font-family: serif;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.tooltip.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.tooltip-close {
  position: absolute;
  top: 8px; right: 8px;
  background: transparent; border: none;
  font-size: 20px; color: #fff;
  cursor: pointer;
}

.tooltip-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.tooltip-icon {
  width: 40%;
  height: 40%;
  margin-right: 12px;
  filter: brightness(1.1);
}

.tooltip-info p {
  margin: 4px 0;
  font-size: 0.95rem;
}

.tooltip-body p {
  			font-size: 0.7rem;
  			}
  			
.tooltip-body {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}
