.share-modal.hidden {
  display: none;
}

.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.share-modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.share-modal-content {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  z-index: 2;
}

.share-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.share-btn {
  padding: 12px;
  background: var(--morado);
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 16px;
}

.share-close {
  margin-top: 20px;
  padding: 10px;
  background: #ccc;
  border: none;
  border-radius: 8px;
}
.share-warning {
  color: #c0392b;
  font-weight: bold;
  margin-bottom: 10px;
}
