:host {
  display: inline-block;
  --border-left-radius: 3px;
  --border-right-radius: 3px;
}
:host button {
  color: #fff;
  background: #ea3c20;
  border-radius: 3px;
  border-width: 0;
  padding: 4px 8px;
  font-size: 13px;
  font-family: var(--sen-font-family, "Source Sans Pro", Helvetica, sans-serif);
  border-top-left-radius: var(--border-left-radius);
  border-bottom-left-radius: var(--border-left-radius);
  border-top-right-radius: var(--border-right-radius);
  border-bottom-right-radius: var(--border-right-radius);
}
:host button.btn-secondary {
  background: #6C6A6A;
}
:host button.btn-warning {
  background: #ffc107;
}
:host button.btn-danger {
  background: #ea3c20;
}
:host.btn-secondary {
  background: #6C6A6A;
}