/* Debug Overlay Styles */
.debug-overlay {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  color: #0f0;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 99999;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.debug-overlay__content {
  position: relative;
}

.debug-overlay strong {
  color: #fff;
  font-weight: 600;
}

.debug-overlay span {
  color: #0f0;
  font-weight: 400;
}

.debug-overlay__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.debug-overlay__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ff5555;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .debug-overlay {
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    padding: 8px 12px;
    min-width: 160px;
  }

  .debug-overlay__close {
    width: 20px;
    height: 20px;
    font-size: 16px;
    top: 4px;
    right: 4px;
  }
}
