/* Share Portfolio Button Styles */

/* Actions container for specializations section */
.data-profile__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

/* Share button in specializations section - New Design */
.share-profile-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #2D2D3A;
  border-radius: 50px;
  color: #2D2D3A;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 245px;
}

.share-profile-btn:hover {
  background: #2D2D3A;
  color: white;
}

.share-profile-btn__text {
  flex: 1;
}

.share-profile-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Notification styles */
.share-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  background: #4caf50;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease;
}

.share-notification--show {
  opacity: 1;
  transform: translateX(0);
}

.share-notification--error {
  background: #f44336;
}

.share-notification--success {
  background: #4caf50;
}

/* Responsive styles */
@media (max-width: 768px) {
  .share-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .data-profile__actions {
    gap: 8px;
  }
  
  .share-profile-btn {
    font-size: 14px;
    padding: 10px 16px;
    min-width: 200px;
  }
}
