.cf-export-btn-wrap { position: relative; display: inline-block; }
.cf-export-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #0f172a;
  cursor: pointer;
  transition: background 120ms;
}
.cf-export-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.cf-export-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.cf-export-menu button {
  background: transparent;
  border: 0;
  text-align: left;
  padding: 8px 12px;
  font-size: 12.5px;
  cursor: pointer;
  border-radius: 4px;
  font-family: inherit;
  color: #0f172a;
}
.cf-export-menu button:hover {
  background: #f8fafc;
}
