.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.share-dialog {
  background: white;
  border-radius: 8px;
  width: 400px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.share-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0 8px;
}

.share-options {
  padding: 16px;
}

.share-option {
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.share-option:hover {
  background: #f5f5f5;
}

.option-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.link-preview {
  padding: 16px;
  background: #f8f8f8;
  border-radius: 0 0 8px 8px;
  word-break: break-all;
}