/* ═══════════════════════════════════════════════════════════
   VOLTAGE — share button & toast
   ═══════════════════════════════════════════════════════════ */

.share-icon {
  padding: 0px 5px 3.5px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  color: var(--svg-color) !important;
}

.sharediv {
  position: relative;
  top: 30px;
  right: 30px;
  padding-bottom: 40px;
}

.toastdiv {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toastbox {
  width: 280px;
  padding: 12px;
  background-color: #121212;
  border: 1px solid var(--accent);
  color: #fff;
  border-radius: 10px;
  position: fixed;
  top: 105%;
  transition: transform 0.3s linear;
  z-index: 2;
  text-align: center;
  letter-spacing: 0.05em;
}
.toastbox.toast-tox--active { transform: translateY(-150px); }

.sharebutton,
sharebutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.1px;
  white-space: wrap;
  border: solid var(--button-border-color) 1px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--button-text-color);
  background-color: var(--button-background-color);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, color 0.2s ease;
}
.sharebutton:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.sharebutton-mb { display: none; }
.sharebutton-img {
  position: relative;
  left: 3px;
  margin-left: auto;
  margin-right: auto;
}
