/**
 * styling for the "share my screen" button
 * created by the ith link scanner
 */
.share-my-screen-button,
.share-my-screen-status {
  background: #0e1c2c;
  color: white;
  font: 400 12px sans-serif;
  padding: 3px;
}
.share-my-screen-button {
  border: 0;
  border-radius: 0;
  cursor: pointer;
  line-height: 23px;
  outline: 0;
  transition: background-color 0.2s;
}
.share-my-screen-button img {
  margin-right: 5px;
  vertical-align: middle;
}
.share-my-screen-button:hover {
  background: #1a3553;
}
.share-my-screen-status {
  display: inline-block;
  height: 23px;
}
.share-my-screen-status img {
  vertical-align: middle;
}
.share-my-screen-status .text {
  display: inline-block;
  line-height: 23px;
  vertical-align: middle;
}
.share-my-screen-status.error > .text {
  color: red;
}
