/* Minimal CSS for share button functionality */
/* All other styling uses ReadTheDocs theme defaults */

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.4em 0.8em;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  cursor: pointer;
  margin: 0.5em 0;
  transition: background-color 0.2s;
}

.share-button:hover {
  background: #e9ecef;
  text-decoration: none;
}

.share-button:focus {
  outline: 2px solid #2980b9;
  outline-offset: 2px;
}

.share-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.share-section {
  margin: 1em 0;
  padding: 0.5em 0;
  border-top: 1px solid #eee;
  font-size: 13px;
}
