/* The share menu (share.js) and the share buttons, shared by the site and the server pages. */
.share-menu {
  background: var(--card, #FFFAF0);
  border: 1px solid rgba(22, 35, 48, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(14, 42, 57, 0.18);
  min-width: 210px;
  padding: 6px;
  position: absolute;
  z-index: 80;
}
.share-menu-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--ink, #1A2330);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 15px;
  gap: 10px;
  margin: 0;
  min-height: 40px;
  padding: 8px 12px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.share-menu-item:hover, .share-menu-item:focus-visible { background: rgba(22, 35, 48, 0.07); outline: 0; }
.share-menu-item:focus-visible { box-shadow: inset 0 0 0 2px var(--water, #163B4F); }
.share-menu-item svg { color: var(--muted, #586470); flex: 0 0 16px; }
.share-icon-btn {
  align-items: center;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(22, 35, 48, 0.18);
  border-radius: 50%;
  color: var(--ink, #1A2330);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  width: 40px;
}
.share-icon-btn:hover, .share-icon-btn[aria-expanded="true"] { background: rgba(224, 138, 86, 0.16); border-color: #9F5626; color: #9F5626; }
.share-icon-btn:focus-visible { outline: 3px solid var(--water, #163B4F); outline-offset: 2px; }
