/* MS Publisher Bridge — Scoped button style */

.ms-pub-wrap {
  display: inline-block;
}

.ms-pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 12px;

  font-weight: 700;
  font-size: 14px;
  line-height: 1;

  border: 1px solid rgba(0,0,0,.10);
  background: #0B5CFF;
  color: #fff;

  cursor: pointer;
  text-decoration: none;
  user-select: none;

  box-shadow: 0 10px 25px rgba(11,92,255,.18);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.ms-pub-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(11,92,255,.24);
  opacity: .98;
}

.ms-pub-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(11,92,255,.18);
  opacity: .95;
}

.ms-pub-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11,92,255,.20), 0 14px 35px rgba(11,92,255,.24);
}

.ms-pub-icon {
  width: 16px;
  height: 16px;
}

.ms-pub-guard {
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  font-size: 13px;
  background: rgba(0,0,0,.03);
}
