.global-tooltip {
  position: fixed;
  background-color: #ffffff;
  color: #888;
  padding: 8px 12px;
  border-radius: 0px;
  font-size: 12px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translateY(-5px);
  z-index: 9999;
  font-family: inherit;
  white-space: nowrap;
  box-sizing: border-box;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.global-tooltip::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.global-tooltip.tooltip-interactive {
  pointer-events: auto;
  white-space: normal;
}
.tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tooltip-msg {
  margin: 0;
  font-size: 12px;
  color: #000;
  line-height: 1.4;
}
.tooltip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tooltip-label {
  font-size: 12px;
  font-weight: 500;
  color: #888;
}
.tooltip-select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-size: 12px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
  outline: none;
  color: #888;
}
.tooltip-btn {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 4px 10px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 0px;
  outline: none;
  font-weight: 500;
}
.tooltip-btn[data-action="continue"] {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}
.tooltip-btn[data-action="change"] {
  background: #FFB800;
  color: #000;
}
.global-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
