.pd-button {
  background: var(--poductivity-accent-alt, #61dcd2);
  outline: none;
  font-family: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--pd-text-color, #ffffff);
  font-size: 0.9em;
  padding: 4px 8px;
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: none;
}
.pd-button.pd-button-small {
  font-size: 0.8em;
  padding: 2px 4px;
}
.pd-button.pd-button-large {
  padding: 8px 12px;
}

.pd-button-link {
  background: none;
  padding: 0;
  border: none;
  display: inline-block;
  width: auto;
  color: var(--poductivity-accent, #112bd1);
  cursor: pointer;
  font-size: inherit;
}

.pd-dropdown-container {
  position: relative;
  display: inline-block;
}
.pd-dropdown-container:focus-within .pd-dropdown-menu {
  display: block;
}

.pd-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 3px;
  border: 1px solid #4d4d4d;
  z-index: 100;
  min-width: 140px;
  background: #fff;
}
.pd-dropdown-menu.up {
  top: initial;
  bottom: 100%;
}
.pd-dropdown-menu.right {
  left: initial;
  right: 0;
}
.pd-dropdown-menu.right .pd-dropdown-item {
  text-align: right;
}

.pd-dropdown-item {
  padding: 2px 4px;
  display: block;
  border: none;
  border-bottom: 1px solid #4d4d4d;
  width: 100%;
  transition: background-color 0.15s linear;
  text-align: left;
  border-radius: 0;
}
.pd-dropdown-item:hover {
  background: #eee;
}
.pd-dropdown-item:last-child {
  border-bottom: none;
}

poductivity-opt-out-control .pd-opt-out-reveal {
  color: #999999;
}
poductivity-opt-out-control > .pd-dropdown-container[aria-expanded=true] .pd-opt-out-reveal {
  color: var(--poductivity-accent, #112bd1);
}